Merge pull request 'fixes bug #AL-2801' (!203) from AL-2801 into master
Reviewed-on: adm/VentaBoletosAdm#203 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master 1.8.1
commit
fe08dfc0f3
4
pom.xml
4
pom.xml
|
@ -4,11 +4,11 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<version>1.8.1</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
<modelWeb.version>1.6.0</modelWeb.version>
|
||||
<modelWeb.version>1.6.1</modelWeb.version>
|
||||
<flyway.version>1.5.0</flyway.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue