Build out purchasing dashboard sections

This commit is contained in:
2026-06-05 09:11:55 +02:00
parent 146c7481e1
commit bf20b3a240
3 changed files with 293 additions and 37 deletions
@@ -0,0 +1,11 @@
using MudBlazor;
namespace TrafagSalesExporter.Models;
public sealed record PurchasingSectionKpi(string LabelDe, string LabelEn, string Value, string DetailDe, string DetailEn);
public sealed record PurchasingSectionChartRow(string Label, string Value, double Percent, string Color);
public sealed record PurchasingSectionStatusRow(string LabelDe, string LabelEn, string Value, string Icon, Color Color);
public sealed record PurchasingSectionDetailRow(string LabelDe, string LabelEn, string Value, string Dimension, string Source);