25 lines
755 B
Plaintext
25 lines
755 B
Plaintext
@page "/machine-detail"
|
|
|
|
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
|
|
{
|
|
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<div>
|
|
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
|
|
</div>
|
|
<ProdStat RecMSE="CurrMSE"></ProdStat>
|
|
<PrintMag RecMSE="CurrMSE"></PrintMag>
|
|
<ProdConfirm RecMSE="CurrMSE" E_newVal="RefreshMBlock"></ProdConfirm>
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<a class="btn btn-info btn-lg w-100" href="scrap"><i class="fa fa-bug"></i> Reg. SCARTI</a>
|
|
</div>
|
|
<div class="col-6">
|
|
<a class="btn btn-primary btn-lg w-100" href="controls"><i class="fa fa-wrench"></i> Reg. CONTROLLI</a>
|
|
</div>
|
|
</div>
|
|
}
|
|
|