rotativa planning

This commit is contained in:
amazuecos
2025-03-26 21:01:31 +01:00
parent ff73caec21
commit 81573eede4
11 changed files with 101 additions and 18 deletions

View File

@ -8,6 +8,8 @@
<th><?= lang('Produccion.datatable.tareas') ?></th>
<th><?= lang('Produccion.datatable.tiradas') ?></th>
<th><?= lang('Produccion.datatable.tiempo') ?>(HH:MM)</th>
<th></th>
</tr>
</thead>
<tbody>

View File

@ -25,7 +25,7 @@
<th></th>
<th><input type="text" class="form-control planning-filter" name="maquina_ancho" placeholder="Ancho"></th>
<th><input type="text" class="form-control planning-filter" name="maquina_alto" placeholder="Alto"></th>
<th><select class="form-control" name=""></select></th>
<th><select class="select2 form-select select-maquina" id="papel-impresion-select-filter" name="maquina_planning_nombre"></select></th>
<th><input type="text" class="form-control planning-filter" name=""></th>
<th></th>

View File

@ -14,22 +14,57 @@
<li class="nav-item">
<button type="button" class="nav-link active" role="tab" id="navs-top-align-prot-tab" data-bs-toggle="tab" data-bs-target="#navs-top-align-prot"><?= lang("Produccion.planning_rotativa") ?></button>
</li>
<li class="nav-item">
<button type="button" class="nav-link" role="tab" id="navs-top-align-papel-gramaje-tab" data-bs-toggle="tab" data-bs-target="#navs-top-align-papel-gramaje"><?= lang("Produccion.papel_gramajes") ?></button>
</li>
</ul>
<div class="tab-content" id="prot-datatables-container">
<div class="tab-pane fade show active" id="navs-top-align-prot">
<?= view("themes/vuexy/components/tables/planning_rot_table.php", ["id" => "planning-rotativa-datatable"]) ?>
<div class="accordion accordion-bordered mt-3" id="accordionPapelGramaje">
<div class="card accordion-item active">
<h2 class="accordion-header" id="headingOne">
<button type="button" class="accordion-button" data-bs-toggle="collapse"
data-bs-target="#accordionPapelGramajeContainer" aria-expanded="false"
aria-controls="accordionPapelGramajeContainer">
<h4><?= lang("Produccion.papel_gramajes") ?></h4>
</button>
</h2>
<div id="accordionPapelGramajeContainer" class="accordion-collapse collapse show"
data-bs-parent="#accordionPapelGramaje">
<div class="accordion-body">
<?= view("themes/vuexy/components/tables/planning_papel_gramaje_table.php", ["id" => "planning-papel-datatable"]) ?>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show" id="navs-top-align-papel-gramaje">
<?= view("themes/vuexy/components/tables/planning_papel_gramaje_table.php", ["id" => "planning-papel-datatable"]) ?>
<div class="tab-pane fade show active" id="navs-top-align-prot">
<div class="accordion accordion-bordered mt-3" id="accordionPlanningRotativa">
<div class="card accordion-item active">
<h2 class="accordion-header" id="headingOne">
<button type="button" class="accordion-button" data-bs-toggle="collapse"
data-bs-target="#accordionPlanningRotativaContainer" aria-expanded="false"
aria-controls="accordionPlanningRotativaContainer">
<h4><?= lang("Produccion.planning_rotativa") ?></h4>
</button>
</h2>
<div id="accordionPlanningRotativaContainer" class="accordion-collapse collapse show"
data-bs-parent="#accordionPlanningRotativa">
<div class="accordion-body">
<?= view("themes/vuexy/components/tables/planning_rot_table.php", ["id" => "planning-rotativa-datatable"]) ?>
</div>
</div>
</div>
</div>
</div>
</div>
<!--//.card -->
</div>
</div>
<!--//.col -->
<!--//.card -->
</div>
</div>
<!--//.col -->
</div>
<?= $this->endSection() ?>