From 10193c21134e28cce8be65ffa685697b1b56d7a2 Mon Sep 17 00:00:00 2001 From: valdevir Date: Tue, 27 Jun 2023 11:14:18 -0300 Subject: [PATCH] fixes bug #AL-2801 --- pom.xml | 4 ++-- .../ModificacionMasivaEmbarcadaUploadController.java | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 9abac2936..7be14740c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,11 +4,11 @@ 4.0.0 br.com.rjconsultores ventaboletosadm - 1.8.0 + 1.8.1 war - 1.6.0 + 1.6.1 1.5.0 UTF-8 UTF-8 diff --git a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/ModificacionMasivaEmbarcadaUploadController.java b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/ModificacionMasivaEmbarcadaUploadController.java index 06a25feac..c1482218c 100644 --- a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/ModificacionMasivaEmbarcadaUploadController.java +++ b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/ModificacionMasivaEmbarcadaUploadController.java @@ -596,9 +596,13 @@ public class ModificacionMasivaEmbarcadaUploadController extends MyGenericForwar + "Tramo: " + tramo.getDesctramo() + "; \n" + "Via: " + tramo.getVia() + "; \n" + "Clase Servicio: " + claseServicio + "; \n" - + "Precio: " + tarifa.getPrecio().setScale(2).toString() + "\n"; + + "Precio: " + tarifa.getPrecio().setScale(2).toString() + "\n" + + "Taxa Embarque: "+ (tarifa.getImportetaxaembarque()!=null ? tarifa.getImportetaxaembarque().toString() : "null") + + "Pedagio: "+ (tarifa.getImportepedagio()!=null ? tarifa.getImportepedagio().toString() :"null") + + "Seguro: "+ (tarifa.getImporteseguro() !=null ? tarifa.getImporteseguro().toString() : "null") + + "Outros: "+ (tarifa.getImporteoutros() !=null ? tarifa.getImporteoutros().toString() : "null"); - log.error(strTmpErrorTarifa); + log.error(strTmpErrorTarifa, ex); strErrorTarifa = strErrorTarifa + strTmpErrorTarifa; }