45 lines
1.9 KiB
Plaintext
45 lines
1.9 KiB
Plaintext
@page "/WorkLoadBalance"
|
|
<div class="card shadow">
|
|
<div class="card-header">
|
|
<div class="d-flex justify-content-between">
|
|
<div class="px-0">
|
|
<h3>Carico Macchine</h3>
|
|
</div>
|
|
<div class="px-0 d-flex">
|
|
<div class="px-0">
|
|
Envir: @SelEnvir
|
|
</div>
|
|
<div class="px-0">
|
|
<PeriodoSel E_PeriodoSel="SetPeriodo" CurrPeriodo="PeriodoSel"></PeriodoSel>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-3">
|
|
<WLB_Estimated AllRecords="@ListEstimRecords" EC_DoBalance="DoBalance"></WLB_Estimated>
|
|
</div>
|
|
<div class="col">
|
|
@if (ListBalancedRecords == null || ListBalancedRecords.Count == 0)
|
|
{
|
|
<div class="alert alert-warning fs-4">Nessun Order Balance Attivo</div>
|
|
}
|
|
else
|
|
{
|
|
<BalanceProgGroup AllRecords="@ListBalancedRecords" EC_RemBalance="RemoveBalance" EC_ReqCreateBatch="DoCreateBatch" CurrEnvir="SelEnvir"></BalanceProgGroup>
|
|
}
|
|
@if (ListOdl != null && ListOdl.Count > 0)
|
|
{
|
|
<OdlMan AllRecords="ListOdl" EC_ReqCreateProd="DoCreateProd" EC_ReqCalcProd="DoPrepareRawMatSel"></OdlMan>
|
|
@if (currOdlAssign != null)
|
|
{
|
|
<RawPartSelector ItemAvailDict="currDictItem" BomListAll="currBomList" DefaultValSet="currDefaultSet" EC_ReqCalcProd="DoCalculateProd" EC_ReqClose="DoCloseRawPart"></RawPartSelector>
|
|
}
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<BootstrapModal @ref=Modal Title=@mTitle Message=@mMessage Mode="BootstrapModal.ModalMode.Confirm" UserOptions=@modalOpt></BootstrapModal> |