Files
2024-01-26 09:21:44 +01:00

31 lines
816 B
Plaintext

@page "/WareHouse"
<PageTitle>WareHouse Area</PageTitle>
@if (isLoading)
{
<LoadingData></LoadingData>
}
else if (CustomerID == 0)
{
<CmpCustomerUndef></CmpCustomerUndef>
}
else
{
<div class="row">
<div class="@mainCss">
<MaterialMan CustomerId="@CustomerID" KeyNum="@nKey" E_MaterialSel="SaveMat"></MaterialMan>
</div>
@if (MaterialSel != null)
{
<div class="col-6">
<ItemMan CustomerId="@CustomerID" KeyNum="@nKey" MaterialSel="@MaterialSel" E_RawItemSel="SaveItem"></ItemMan>
@if (RawItemSel != null)
{
<br />
<MovMag CustomerId="@CustomerID" KeyNum="@nKey" RawItemSel="@RawItemSel"></MovMag>
}
</div>
}
</div>
}