Removed console logging for hold date and added display of daily and weekly part changes (completed and projected).

This commit is contained in:
Daniel Wathen
2023-01-23 13:47:17 -07:00
parent 649805bde6
commit a67cc55abe
13 changed files with 232 additions and 95 deletions

View File

@ -1,4 +1,5 @@
using ReportingServices.Shared.HelperClasses;
using ReportingServices.Shared.Models.PlanningReport;
using ReportingServices.Shared.Models.ProductionReport;
namespace ReportingServices.Shared.ViewModels.ProductionReport;
@ -18,6 +19,10 @@ public class DailyReport
public List<UnloadTempsByDay> UnloadTempsByDay { get; set; }
public List<SLLTool> SLLTools { get; set; }
public List<string> CurrentHotWORunning { get; set; }
public List<ReactorPSNWORuns> CompletedDailyPartChanges { get; set; }
public List<ReactorPSNWORuns> ProjectedDailyPartChanges { get; set; }
public List<ReactorPSNWORuns> CompletedWeeklyPartChanges { get; set; }
public List<ReactorPSNWORuns> ProjectedWeeklyPartChanges { get; set; }
public int NumberOfToolsWaferSize6IN { get; set; }
public int NumberOfToolsWaferSize8IN { get; set; }
public int NumberOfToolsWaferSize6INScheduled { get; set; }