Files
mapo-core/MP.INVE/Components/ListTotLotto.razor
T
zaccaria.majid b6b0333b74 fix grafici
2022-12-15 15:29:50 +01:00

39 lines
1.0 KiB
Plaintext

<h3>Totale lotti</h3>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Lotto</th>
<th scope="col">Articolo</th>
<th scope="col">Descrizione Art</th>
<th scope="col">Tot colli</th>
<th scope="col">Tot lotto</th>
</tr>
</thead>
<tbody>
@if (elencoTotLotto != null)
{
@foreach (var item in elencoTotLotto)
{
<tr>
<td>
@item.Lotto
</td>
<td>
@item.CodArticolo
</td>
<td class="small textCondensed">
@item.DescrArt
</td>
<td>
@item.NumColli
</td>
<td>
@($"{item.TotLotto:N2}")
</td>
</tr>
}
}
</tbody>
</table>