23 lines
522 B
Plaintext
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>
|
|
}
|
|
}
|
|
|
|
|