39 lines
1.0 KiB
Plaintext
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>
|