Files
2024-02-26 20:05:47 +01:00

23 lines
522 B
Plaintext

@page "/tech-sheet"
@inherits BasePage
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
{
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
}
else
{
<CheckControls RecMSE="CurrMSE"></CheckControls>
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
@if (enableSchedaTecnica)
{
<TechSheetMan RecMSE="CurrMSE"></TechSheetMan>
}
else
{
<DisabledAlert Title="@disTitle" Subtitle="@disSubtitle" Message="@disMessage"></DisabledAlert>
}
}