Files
mapo-core/MP-TAB3/Pages/MachineDetail.razor
T
Samuele Locatelli 417e40c87b TAB3:
- Appunti procedura INS manuale
2025-03-31 20:35:16 +02:00

22 lines
554 B
Plaintext

@page "/machine-detail"
@inherits BasePage
@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>
@if (IsManual)
{
<InsManual RecMSE="CurrMSE" E_Updated="RefreshData"></InsManual>
}
else
{
<ProdConfirm RecMSE="CurrMSE" E_Updated="RefreshData" E_MachSel="SetMacc"></ProdConfirm>
}
}