resuelto problema al confirmar presupuesto precio distinto

This commit is contained in:
2025-02-23 21:25:53 +01:00
parent 046c31eb62
commit dc92e352b9
3 changed files with 20 additions and 4 deletions

View File

@ -238,7 +238,12 @@ class Resumen {
this.paginas.text(this.datosGenerales.paginas.val());
this.paginasColor.text(this.datosGenerales.paginasColor.val());
this.paginasNegro.text(this.datosGenerales.paginasNegro.val());
this.tirada.text(parseInt($($('.check-tirada-envio:checked')[0]).attr('tirada')));
if(this.datosGenerales.selectedTirada){
this.tirada.text(this.datosGenerales.selectedTirada);
}
else{
this.tirada.text(parseInt($($('.check-tirada-envio:checked')[0]).attr('tirada')));
}
this.prototipo.text(this.datosGenerales.prototipo.is(':checked') ? 'Sí' : 'No');
const HQ = this.disenioInterior.getIsHq();