fixes bug #AL-2801
parent
0a943baaa4
commit
10193c2113
4
pom.xml
4
pom.xml
|
@ -4,11 +4,11 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.8.0</version>
|
<version>1.8.1</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<modelWeb.version>1.6.0</modelWeb.version>
|
<modelWeb.version>1.6.1</modelWeb.version>
|
||||||
<flyway.version>1.5.0</flyway.version>
|
<flyway.version>1.5.0</flyway.version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
|
|
@ -596,9 +596,13 @@ public class ModificacionMasivaEmbarcadaUploadController extends MyGenericForwar
|
||||||
+ "Tramo: " + tramo.getDesctramo() + "; \n"
|
+ "Tramo: " + tramo.getDesctramo() + "; \n"
|
||||||
+ "Via: " + tramo.getVia() + "; \n"
|
+ "Via: " + tramo.getVia() + "; \n"
|
||||||
+ "Clase Servicio: " + claseServicio + "; \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;
|
strErrorTarifa = strErrorTarifa + strTmpErrorTarifa;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue