25 lines
853 B
Plaintext
25 lines
853 B
Plaintext
@page "/SellItems"
|
|
@inherits BaseComp
|
|
|
|
<div class="p-2 shadow rounded-2 border">
|
|
<div class="d-flex align-items-center justify-content-between">
|
|
<DataFilter CurrFilt="@CurrFilt" ShowItemsBuy="false" ListItemGroup="ListItemGroup" EC_Updated="UpdateFilt" EC_AddRew="DoAdd"></DataFilter>
|
|
</div>
|
|
<div class="my-2 py-1 rounded-2">
|
|
@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>
|
|
|
|
|