31 lines
989 B
Plaintext
31 lines
989 B
Plaintext
@page "/SellItems"
|
|
|
|
<div class="card shadow">
|
|
<div class="card-header">
|
|
<div class=" d-flex justify-content-between">
|
|
<div class="px-0 fs-3">
|
|
<b>Articoli Vendita</b>
|
|
</div>
|
|
<div class="px-0">
|
|
<DataFilter CurrFilt="@CurrFilt" ShowItemsBuy="false" ListItemGroup="ListItemGroup" EC_Updated="UpdateFilt" EC_AddRew="DoAdd"></DataFilter>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
@if (isLoading)
|
|
{
|
|
<LoadingData></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
if (editRecord != null)
|
|
{
|
|
<SellingItemEdit CurrRecord="editRecord" ListItemGroup="ListItemGroup" ListJobTask="ListJobTask" EC_Updated="DoSaveSelItem" EC_Close="DoCancel"></SellingItemEdit>
|
|
}
|
|
<SellingItemMan SelFilt="CurrFilt" ListItemGroup="ListItemGroup" EC_EditReq="EditSellItem"></SellingItemMan>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
|