Primera version del importador RAMA

This commit is contained in:
unknown
2025-04-29 15:42:50 +02:00
parent bf1e66d746
commit 7da76af866
4 changed files with 445 additions and 230 deletions

View File

@ -35,40 +35,33 @@
<div class="col-md-12 mb-3">
<div class="table-responsive">
<table id="excelTable" class="table table-striped table-hover" style="width: 100%;">
<thead>
<tr>
<th>
<input type="checkbox" id="select-all" class="form-check-input">
</th>
<th><?= lang('Importador.input') ?></th>
<th><?= lang('Importador.idlinea') ?></th>
<th><?= lang('Importador.descripcion') ?></th>
<th><?= lang('Importador.cnt_pedida') ?></th>
<th><?= lang('Importador.precio_compra') ?></th>
<th class="text-nowrap" style="min-width: 120px;">
<?= lang('Basic.global.Action') ?></th>
</tr>
<tr>
<th></th>
<th><input type="text" class="form-control form-control-sm"
placeholder="Filtrar..." /></th>
<th><input type="text" class="form-control form-control-sm"
placeholder="Filtrar..." /></th>
<th><input type="text" class="form-control form-control-sm"
placeholder="Filtrar..." /></th>
<th><input type="text" class="form-control form-control-sm"
placeholder="Filtrar..." /></th>
<th><input type="text" class="form-control form-control-sm"
placeholder="Filtrar..." /></th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<table id="excelTable" class="table table-striped table-hover" style="width: 100%;">
<thead>
<tr>
<th><input type="checkbox" id="selectAll"></th> <!-- Checkbox general -->
<th><?= lang('Importador.input') ?></th>
<th><?= lang('Importador.idlinea') ?></th>
<th><?= lang('Importador.descripcion') ?></th>
<th><?= lang('Importador.cnt_pedida') ?></th>
<th><?= lang('Importador.precio_compra') ?></th>
<th>Notas</th> <!-- Comentarios -->
<th><?= lang('Basic.global.Action') ?></th>
<!-- Acciones (importar/eliminar) -->
</tr>
<tr> <!-- Segunda fila para filtros -->
<th></th> <!-- No filtro en checkbox -->
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th> <!-- No filtro en notas -->
<th></th> <!-- No filtro en acciones -->
</tr>
</thead>
<tbody></tbody>
</table>
</div>