diff --git a/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs b/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs
index 17f0034..5d77668 100644
--- a/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs
+++ b/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs
@@ -171,6 +171,9 @@ public class ToolEventView
if (evnt.ToUpper() == "ENGINEERING_DEVELOPMENT")
return true;
+ if (evnt.ToUpper() == "WAITING_FOR_ENGINEER_SCHEDULED")
+ return true;
+
return false;
}
diff --git a/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml b/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml
index aec222e..c41987b 100644
--- a/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml
+++ b/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml
@@ -307,7 +307,8 @@
@{
List engTools = Model.ToolEvents
- .Where(x => x.MostRecentEvent.REACT_MODE == "ENGINEERING_DEVELOPMENT")
+ .Where(x => x.MostRecentEvent.REACT_MODE == "ENGINEERING_DEVELOPMENT" ||
+ x.MostRecentEvent.REACT_MODE == "WAITING_FOR_ENGINEER_SCHEDULED")
.Select(x => x.Reactor).ToList();
}
- Application ENG (@engTools.Count()):
diff --git a/ReportingServices.UI/wwwroot/Assets/SLLTools.json b/ReportingServices.UI/wwwroot/Assets/SLLTools.json
index 2ec55aa..0dee11a 100644
--- a/ReportingServices.UI/wwwroot/Assets/SLLTools.json
+++ b/ReportingServices.UI/wwwroot/Assets/SLLTools.json
@@ -1 +1 @@
-[{"Date":"2023-01-23T00:00:00-07:00","ASM":7,"HTR":16},{"Date":"2023-01-24T00:00:00-07:00","ASM":7,"HTR":15},{"Date":"2023-01-26T00:00:00-07:00","ASM":7,"HTR":14},{"Date":"2023-02-20T00:00:00-07:00","ASM":3,"HTR":8},{"Date":"2023-03-01T00:00:00-07:00","ASM":3,"HTR":8}]
\ No newline at end of file
+[{"Date":"2023-01-23T00:00:00-07:00","ASM":7,"HTR":16},{"Date":"2023-01-24T00:00:00-07:00","ASM":7,"HTR":15},{"Date":"2023-01-26T00:00:00-07:00","ASM":7,"HTR":14},{"Date":"2023-02-20T00:00:00-07:00","ASM":3,"HTR":8},{"Date":"2023-03-01T00:00:00-07:00","ASM":3,"HTR":8},{"Date":"2023-03-03T00:00:00-07:00","ASM":3,"HTR":8}]
\ No newline at end of file