Files
lux/Lux.UI/Components/Pages/BuyOrder.razor
T
2026-07-03 15:05:21 +02:00

25 lines
667 B
Plaintext

@page "/BuyOrder"
@using Lux.UI.Components.Compo.Warehouse
<div class="row w-100 g-2">
<div class="col-6">
@if (isProcessing)
{
<LoadingData></LoadingData>
}
else
{
<MatReqList AllRecords="@MatReqAllRecords" CurrSelDict="CurrSelDict" EC_Updated="RecordUpdate" EC_CreateBuyOrder="CreateBuyOrder"></MatReqList>
}
</div>
<div class="col-6">
@if (isProcessing)
{
<LoadingData></LoadingData>
}
else
{
<BuyOrderList AllRecords="@BuyOrdAllRecords" EC_SaveBuyOrder="SaveBuyOrder"></BuyOrderList>
}
</div>
</div>