Page 1 of 1

MWL page colors

Posted: Sat Jun 21, 2014 7:56 pm
by diegog
What means the different colors that appear in the MWL page?
On Week modality worklist I see yellow, with and blue orders?

I can't find any explanation on the manual.

Thanks!

Diego[/img]

Posted: Sun Jun 22, 2014 1:44 pm
by pacsone
The following study color definitions can be found in the "php/constants.php" script under the directory where PacsOne Server is installed:

Code: Select all

$STUDY_COLORS = array(
    $STUDY_STATUS_SCHEDULED             => "white",
    $STUDY_STATUS_PATIENT_ARRIVED       => "#3366FF",
    $STUDY_STATUS_STARTED               => "#6633FF",
    $STUDY_STATUS_COMPLETED             => "#CC33FF",
    $STUDY_STATUS_UPDATED               => "#FF33CC",
    $STUDY_STATUS_VERIFIED              => "#FF6633",
    $STUDY_STATUS_DISCONTINUED          => "#B88A00",
    $STUDY_STATUS_DELETED               => "black",
    $STUDY_STATUS_IMAGE_ARRIVED         => "yellow",
    $STUDY_STATUS_IMAGE_ARRIVED_STAT    => "red",
    $STUDY_STATUS_READ                  => "green",
);