From 3a2e68043cbc750aa3e3a69c5fa91dfc8dc5d308 Mon Sep 17 00:00:00 2001 From: Daniel Wathen Date: Wed, 26 Apr 2023 17:25:00 -0700 Subject: [PATCH] Added new mode to production to stop it from showing on the downed tools. --- .../ViewModels/ProductionReport/ToolEventView.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs b/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs index 5d77668..3f72404 100644 --- a/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs +++ b/ReportingServices.Shared/ViewModels/ProductionReport/ToolEventView.cs @@ -174,6 +174,9 @@ public class ToolEventView if (evnt.ToUpper() == "WAITING_FOR_ENGINEER_SCHEDULED") return true; + if (evnt.ToUpper() == "UP_WITH_INCREASED_SAMPLING_SURFACE") + return true; + return false; }