Files
lux/Lux.UI/Components/Compo/EditBom.razor
T

46 lines
1.4 KiB
Plaintext

<table class="table table-sm table-striped">
<thead>
<tr>
<td class="text-center">res</td>
<td>Class</td>
<td>Descrizione</td>
<td>Cod</td>
<td class="text-end">Qty</td>
<td class="text-end">UnitPrice</td>
<td class="text-end">Importo</td>
</tr>
</thead>
<tbody>
@foreach (var item in BomList)
{
<tr>
<td class="text-center">
@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>
<td>@item.ClassCode</td>
<td>@item.ItemCode</td>
<td>@item.DescriptionCode</td>
<td class="text-end">@($"{item.Qty:N3}")</td>
<td class="text-end">@($"{item.PriceEff:C2}")</td>
<td class="text-end">@($"{item.TotalCost:C2}")</td>
</tr>
}
</tbody>
<tfoot>
<tr>
<td colspan="5">
@BomList.Count record</td>
<td>tot:</td>
<td class="text-end fw-bold">@($"{ImportoTotale:C2}")</td>
</tr>
</tfoot>
</table>
@* <div class="d-flex justify">
<div class="px-1">
</div>
<div class="px-1"></div>
</div> *@