Files
mapo-core/MP.SPEC/Components/FLStatusList.razor
T
Samuele Locatelli 571ac2cea8 SPEC:
- inizio pagina gest fluxLog e pareto eventi
- ok visualizzazione ultimo mese
2023-10-20 18:54:28 +02:00

41 lines
1.0 KiB
Plaintext

@if (isProcessing)
{
<LoadingData DisplaySize="LoadingData.CtrlSize.Large"></LoadingData>
}
else
{
<table class="table table-sm table-striped">
<thead>
<tr class="">
<th>Macchina</th>
<th>Key</th>
<th>Qty</th>
<th>#/gg</th>
<th>#/h</th>
</tr>
</thead>
<tbody>
@foreach (var item in ListPaged)
{
<tr>
<td>
@item.IdxMacchina
</td>
<td>
@item.CodFlux
</td>
<td>
@($"{item.Qty:N0}")
</td>
<td>
@($"{(item.Qty / numDay):N0}")
</td>
<td>
@($"{(item.Qty / numHour):N0}")
</td>
</tr>
}
</tbody>
</table>
}