Removed console logging for hold date and added display of daily and weekly part changes (completed and projected).
This commit is contained in:
@ -15,6 +15,4 @@ public class ManualReportEntries
|
||||
public int MaintenanceCallOutsDays { get; set; }
|
||||
public int MaintenanceCallOutsNights { get; set; }
|
||||
public string BottleChanges { get; set; }
|
||||
public string DailyPartChanges { get; set; }
|
||||
public string WeeklyPartChanges { get; set; }
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ReportingServices.Shared.Models.ProductionReport;
|
||||
public class ScheduledEvent
|
||||
{
|
||||
[JsonPropertyName("REACT_NO")]
|
||||
public string REACT_NO { get; set; }
|
||||
[JsonPropertyName("WO_NO")]
|
||||
public string WO_NO { get; set; }
|
||||
[JsonPropertyName("PROD_SPEC_ID")]
|
||||
public string PROD_SPEC_ID { get; set; }
|
||||
[JsonPropertyName("START_DTM")]
|
||||
public DateTime START_DTM { get; set; }
|
||||
[JsonPropertyName("STOP_DTM")]
|
||||
public DateTime STOP_DTM { get; set; }
|
||||
[JsonPropertyName("BLOCKOUT")]
|
||||
public string BLOCKOUT { get; set; }
|
||||
[JsonPropertyName("BLOCKOUT_TYPE")]
|
||||
public string BLOCKOUT_TYPE { get; set; }
|
||||
}
|
Reference in New Issue
Block a user