cambiados orden columnas en margenes

This commit is contained in:
2025-10-20 17:19:57 +02:00
parent b2e5dcac9b
commit d0c3bdc5a6
2 changed files with 4 additions and 4 deletions

View File

@ -52,8 +52,8 @@ import {normalizeNumericFilter} from '../../utils.js';
{ data: 'id', name: 'id', orderable: true },
{ data: 'importeMin', name: 'importeMin', orderable: true },
{ data: 'importeMax', name: 'importeMax', orderable: true },
{ data: 'margenMax', name: 'margenMax', orderable: true },
{ data: 'margenMin', name: 'margenMin', orderable: true },
{ data: 'margenMax', name: 'margenMax', orderable: true },
{ data: 'actions', name: 'actions' }
],
columnDefs: [{ targets: -1, orderable: false, searchable: false }]

View File

@ -47,8 +47,8 @@
<th scope="col" th:text="#{margenes-presupuesto.tabla.id}">ID</th>
<th scope="col" th:text="#{margenes-presupuesto.tabla.importe_minimo}">Importe Mín.</th>
<th scope="col" th:text="#{margenes-presupuesto.tabla.importe_maximo}">Importe Máx.</th>
<th scope="col" th:text="#{margenes-presupuesto.tabla.margen_maximo}">Margen Máx.</th>
<th scope="col" th:text="#{margenes-presupuesto.tabla.margen_minimo}">Margen Mín.</th>
<th scope="col" th:text="#{margenes-presupuesto.tabla.margen_maximo}">Margen Máx.</th>
<th scope="col" th:text="#{margenes-presupuesto.tabla.acciones}">Acciones</th>
</tr>
<tr>
@ -64,11 +64,11 @@
</th>
<th>
<input type="text" class="form-control form-control-sm margenes-presupuesto-filter"
data-col="margenMax" />
data-col="margenMin" />
</th>
<th>
<input type="text" class="form-control form-control-sm margenes-presupuesto-filter"
data-col="margenMin" />
data-col="margenMax" />
</th>
<th></th>
</tr>