29 lines
873 B
Plaintext
29 lines
873 B
Plaintext
@page "/BuyOrder"
|
|
@using Lux.UI.Components.Compo.Warehouse
|
|
|
|
<div class="row w-100 g-2">
|
|
<div class="@DimensionColCss()">
|
|
@if (isProcessing)
|
|
{
|
|
<LoadingData DisplayMode="LoadingData.SpinMode.BounceLine"></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<MatReqList AllRecords="@MatReqAllRecords" EC_Updated="RecordUpdate"></MatReqList>
|
|
}
|
|
</div>
|
|
@if (CurrSelDict.Count > 0)
|
|
{
|
|
<MatReq2BuyOrder CurrSelDict="CurrSelDict" EC_CreateBuyOrder="CreateBuyOrder"></MatReq2BuyOrder>
|
|
}
|
|
<div class="@DimensionColCss()">
|
|
@if (isProcessing)
|
|
{
|
|
<LoadingData DisplayMode="LoadingData.SpinMode.BounceLine"></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<BuyOrderList AllRecords="@BuyOrdAllRecords" EC_SaveBuyOrder="SaveBuyOrder"></BuyOrderList>
|
|
}
|
|
</div>
|
|
</div> |