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;
}