corregido error en papeles especiales

This commit is contained in:
2025-01-29 09:43:34 +01:00
parent 961ea42ac4
commit 2af5a0155c
4 changed files with 9 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class DisenioCubierta {
solapas: () => {return $('#solapas_cubierta').hasClass("d-none") ? 0 : $('#solapas_cubierta').val()},
lomo: () => {return $('#lc').val()},
tapa_dura: () => {return this.tapaBlanda.hasClass("selected") ? 0 : 1},
tirada: this.presupuestoCliente.datosGenerales.getTiradas()[0],
tirada: () => {return this.presupuestoCliente.datosGenerales.getTiradas()[0]},
}
);

View File

@ -57,7 +57,7 @@ class DisenioInterior {
{
[this.csrf_token]: this.csrf_hash,
tipo: this.getTipoImpresion(),
tirada: () => {return $('#tirada').val()},
tirada: () => {{return this.presupuestoCliente.datosGenerales.getTiradas()[0]}},
ancho: () => {return this.presupuestoCliente.datosGenerales.getDimensionLibro().ancho},
alto: () => {return this.presupuestoCliente.datosGenerales.getDimensionLibro().alto},
solapas: 0,