69998ac20e
- Modificata pagina bilanciamento macchine
26 lines
766 B
Plaintext
26 lines
766 B
Plaintext
@page "/ProdPlanner"
|
|
@inherits BaseComp
|
|
|
|
<div class="p-2 shadow">
|
|
<div class="d-flex justify-content-end">
|
|
<div class="px-0">
|
|
<PeriodoSel E_PeriodoSel="SetPeriodo" CurrPeriodo="PeriodoSel" PeriodoLabel="@Traduci("periodo")" DictSelect="CustomSelDict"></PeriodoSel>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
@if(ListOdl != null && ListOdl.Count > 0)
|
|
{
|
|
<div class="col-2 my-2 py-1">
|
|
@foreach (var currOdl in ListOdl)
|
|
{
|
|
<OdlDetail CurrRecord="currOdl"></OdlDetail>
|
|
}
|
|
</div>
|
|
}
|
|
<div class="col-10 my-2 py-1">
|
|
<CalendarPlanner EvDtoList="ListEventi"></CalendarPlanner>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|