Files
2023-10-21 11:23:32 +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>
@($"{((float)item.Qty / numDay):N1}")
</td>
<td>
@($"{((float)item.Qty / numHour):N2}")
</td>
</tr>
}
</tbody>
</table>
}