30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
@page "/prod-stop"
|
|
|
|
|
|
<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"></MachineBlock>
|
|
|
|
<NotesEditor @ref="noteEdit" Title="Dichiarazione Fermo Retroattiva + Commento" RecMSE="CurrMSE" CanSave="false" E_DateSel="SetDate"></NotesEditor>
|
|
|
|
<ShowProcessing IsProcessing="@isProcessing"></ShowProcessing>
|
|
<div class="d-flex justify-content-between flex-wrap align-items-center mb-3">
|
|
@if (!string.IsNullOrEmpty(lblOut))
|
|
{
|
|
<div class="alert @alertCss fs-5 w-100">
|
|
@lblOut
|
|
</div>
|
|
}
|
|
@foreach (var item in events2show)
|
|
{
|
|
<ProdStopMan objCss="@item.CssClass" objIcon="@item.Icon" objTxt="@(item.label)" IdxEvento="@item.value" E_EventSelected="EventRecord"></ProdStopMan>
|
|
}
|
|
</div>
|
|
}
|