solucionado problema con solapas

This commit is contained in:
2025-06-16 15:13:23 +02:00
parent 75020a075c
commit b2652fc277

View File

@ -324,37 +324,42 @@ class DisenioCubierta {
this.gramaje = datosCubierta.gramaje;
if (datosCubierta.lomoRedondo) {
if (datosCubierta.lomoRedondo || datosCubierta.tapa == "dura") {
if (datosCubierta.lomoRedondo)
this.tapaDuraLomoRedondo.trigger('click');
}
else {
if (datosCubierta.tapa == "dura") {
else
this.tapaDuraLomoRecto.trigger('click');
}
else {
this.tapaBlanda.trigger('click');
}
}
setTimeout(() => {
if (datosCubierta.tapa == "dura") {
this.papelGuardas.setOption(datosGuardas.papel_id, datosGuardas.papel);
this.gramajeGuardas.setOption(datosGuardas.gramaje, datosGuardas.gramaje);
this.guardasImpresas.val(datosGuardas.paginas).trigger('change');
this.cabezada.val(datosCubierta.cabezada).trigger('change');
}, 100);
}
else {
this.carasCubierta.val(datosCubierta.paginas).trigger('change');
if (datosCubierta.solapas) {
this.conSolapas.trigger('click');
this.tamanioSolapasCubierta.val(datosCubierta.solapas_ancho);
this.tapaBlanda.addClass('selected');
this.#handleMenuTipoCubierta();
setTimeout(() => {
this.carasCubierta.val(datosCubierta.paginas).trigger('change');
if (datosCubierta.solapas) {
// Activar con-solapas
this.conSolapas.addClass('selected')
.find('.image-presupuesto').addClass('selected');
this.sinSolapas.removeClass('selected')
.find('.image-presupuesto').removeClass('selected');
this.divTamanioSolapas.removeClass('d-none');
this.tamanioSolapasCubierta.val(datosCubierta.solapas_ancho);
} else {
// Asegurar que sin-solapas queda seleccionado (no togglear)
this.divTamanioSolapas.addClass('d-none');
}
else {
this.sinSolapas.trigger('click');
}, 100);
}
}
}, 0);
this.divPapelCubierta.find(`[cod="${datosCubierta.papel.code}"]`).addClass('selected');