Files
mapo-core/MP-TAB-SERV/Pages/MachineDetail.razor
T
Samuele Locatelli cb2162fed8 Aggiunto modulo check x
- dichiarazioni fermo necessarie
- dichiarazione controlli scaduti
2023-12-11 19:41:22 +01:00

16 lines
516 B
Plaintext

@page "/machine-detail"
<MseSampler SampleMult="0.5" E_Updated="RefreshData"></MseSampler>
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
{
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
}
else
{
<CheckControls RecMSE="CurrMSE"></CheckControls>
<MachineBlock RecMSE="CurrMSE" FullMode="false" IdxMacchSub="@IdxMaccSubSel"></MachineBlock>
<ProdConfirm RecMSE="CurrMSE" E_Updated="RefreshData" E_MachSel="SetMacc"></ProdConfirm>
<ProdStat RecMSE="CurrMSE"></ProdStat>
}