Load purchasing EKPO and EKET metrics
This commit is contained in:
@@ -16,5 +16,17 @@ public sealed class PurchasingDashboardLiveState
|
||||
public DateTime? LatestOrderDate { get; set; }
|
||||
public int PositionSampleCount { get; set; }
|
||||
public int ScheduleSampleCount { get; set; }
|
||||
public decimal SpendChfSample { get; set; }
|
||||
public decimal OpenQuantitySample { get; set; }
|
||||
public decimal OpenValueSample { get; set; }
|
||||
public decimal ContractValueSample { get; set; }
|
||||
public string TopSupplierLabel { get; set; } = string.Empty;
|
||||
public string TopMaterialGroupLabel { get; set; } = string.Empty;
|
||||
public string TopArticleLabel { get; set; } = string.Empty;
|
||||
public List<PurchasingLiveChartPoint> SpendChartRows { get; set; } = [];
|
||||
public List<PurchasingLiveChartPoint> OpenValueChartRows { get; set; } = [];
|
||||
public List<PurchasingLiveChartPoint> ContractChartRows { get; set; } = [];
|
||||
public string Message { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public sealed record PurchasingLiveChartPoint(string Label, decimal Value);
|
||||
|
||||
Reference in New Issue
Block a user