Files
mapo-core/MP-TAB3/Pages/Declarations.razor
2024-02-26 20:17:35 +01:00

15 lines
395 B
Plaintext

@page "/declarations"
@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>
<DeclarMan RecMSE="CurrMSE" E_MachSel="SetMacc"></DeclarMan>
}