Files
lux/Lux.UI/Components/Compo/EditBom.razor
T
2025-09-16 19:16:21 +02:00

32 lines
921 B
Plaintext

<table class="table table-sm table-striped">
<thead>
<tr>
<td>Class</td>
<td>Descrizione</td>
<td>Cod</td>
<td>Qty</td>
<td>Prezzo</td>
<td>Alt</td>
</tr>
</thead>
<tbody>
@foreach (var item in BomList)
{
<tr>
<td>@item.ClassCode</td>
<td>@item.ItemCode</td>
<td>@item.DescriptionCode</td>
<td>@($"{item.Qty:N2}")</td>
<td>@($"{item.PriceCalc:C2}")</td>
<td>
@if (item.Price == 0)
{
<button class="btn btn-sm btn-warning" title="Effettua Cambio"><i class="fa-solid fa-arrow-right-arrow-left"></i></button>
}
</td>
</tr>
}
</tbody>
</table>
Trovati @BomList.Count record