31 lines
816 B
Plaintext
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>
|
|
} |