From f1316d0e8f34aba13c8d7ce0309c4eb373a99520 Mon Sep 17 00:00:00 2001 From: "Infineon\\StieberD" Date: Fri, 12 Sep 2025 13:39:13 -0700 Subject: [PATCH] Bumped the case statement for closed above the hot flag to ensure closed hot events are colored accordingly --- LSL2/STPROC/SCHEDULE_SERVICES.txt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/LSL2/STPROC/SCHEDULE_SERVICES.txt b/LSL2/STPROC/SCHEDULE_SERVICES.txt index f8887da..433df1f 100644 --- a/LSL2/STPROC/SCHEDULE_SERVICES.txt +++ b/LSL2/STPROC/SCHEDULE_SERVICES.txt @@ -385,7 +385,6 @@ end service Service GetScheduleEventSummary(SchedDetKeyID, IncludeWaferDetails) If IncludeWaferDetails NE True$ then IncludeWaferDetails = False$ - ScheduleEventSummary = '' If SchedDetKeyID NE '' then SchedDetRec = Database_Services('ReadDataRow', 'SCHED_DET_NG', SchedDetKeyID) @@ -442,10 +441,10 @@ Service GetScheduleEventSummary(SchedDetKeyID, IncludeWaferDetails) Begin Case Case BackColor NE '' // Set in the schedule detail record. Use current color. - Case HotLotFlag - BackColor = 'LightCoral' Case WOClosedFlag BackColor = 'LightGray' + Case HotLotFlag + BackColor = 'LightCoral' Case HardBlock BackColor = 'LightGoldenRodYellow' Case BlockOut @@ -3602,6 +3601,3 @@ CreateScheduleChangeNotification: return - - -