Merge branch 'fix/papeles_interior_change' into 'main'

Fix/papeles interior change

See merge request jjimenez/erp-imprimelibros!15
This commit is contained in:
2025-10-20 15:20:41 +00:00
3 changed files with 5 additions and 5 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

@ -836,7 +836,7 @@ export default class PresupuestoWizard {
});
$(document).on('change', 'input[name="papelInterior"]', (e) => {
$(document).on('change', 'input[name="papel-interior"]', (e) => {
if (!$(e.target).is(':checked'))
return;

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>