Files
mapo-core/MP-TAB-SERV/Pages/ProdPlan.razor
T
2023-10-16 14:37:58 +02:00

12 lines
274 B
Plaintext

@page "/prod-plan"
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
{
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
}
else
{
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
<ProdPlanMan RecMSE="CurrMSE"></ProdPlanMan>
}