Added new reactor mode to for ENG APP

This commit is contained in:
Daniel Wathen
2023-03-03 13:24:57 -07:00
parent 7ca02958dc
commit f77d723576
3 changed files with 6 additions and 2 deletions

View File

@ -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;
}