When EPP tools have Hot WOs assigned, it also brings in the pairing tools (40 brings in 42, 44 brings in 46, 48 brings in 50)

This commit is contained in:
Daniel Wathen
2023-01-19 15:13:16 -07:00
parent 29936b8571
commit 0de14ec886
2 changed files with 12 additions and 0 deletions

View File

@ -155,6 +155,17 @@ public static class DailyReportHelper
report.PreviousWeek.QTDOutsAndScrap = task4.Result;
report.CurrentHotWORunning = task7.Result;
if (report.CurrentHotWORunning.Contains("R40"))
report.CurrentHotWORunning.Add("R42");
if (report.CurrentHotWORunning.Contains("R44"))
report.CurrentHotWORunning.Add("R46");
if (report.CurrentHotWORunning.Contains("R48"))
report.CurrentHotWORunning.Add("R50");
report.CurrentHotWORunning.Sort();
}
catch (Exception ex)
{