Updated daily report to show correct information when two work weeks split quarters.

Also current changes to project with Blazor implementation is implemented here as well.
This commit is contained in:
Daniel Wathen
2023-04-03 09:58:28 -07:00
parent f77d723576
commit 72e7a55ab4
305 changed files with 148901 additions and 4 deletions

View File

@ -8,6 +8,7 @@ public class DailyReport
{
public DateTime StartDate { get; set; }
public DateTime QuarterStartDate { get; set; }
public DateTime PreviousQuarterStartDate { get; set; }
public YieldStatistics CurrentWeek { get; set; }
public YieldStatistics PreviousWeek { get; set; }
public List<ToolEventView> ToolEvents { get; set; }
@ -28,6 +29,7 @@ public class DailyReport
public int NumberOfToolsWaferSize6INScheduled { get; set; }
public int NumberOfToolsWaferSize8INScheduled { get; set; }
public QuarterlyTargets QuarterlyTargets { get; set; }
public QuarterlyTargets PreviousQuarterlyTargets { get; set; }
public DailyReport()
{