bug#11600

dev: julio
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@85899 d1611594-4594-4d17-8e1d-87c2c4800839
master
julio 2018-10-04 13:32:03 +00:00
parent 7b554a40ba
commit 69715bb413
1 changed files with 5 additions and 3 deletions

View File

@ -323,9 +323,11 @@ public class RelatorioDevolucaoBilhetes extends Relatorio {
private BigDecimal valorPassagem(DevolucaoBilhetes det) {
BigDecimal total = BigDecimal.ZERO;
total = total.add(det.getPrecioPagado() == null ? BigDecimal.ZERO : det.getPrecioPagado());
total = total.add(det.getImportetaxaembarque() == null ? BigDecimal.ZERO : det.getImportetaxaembarque());
total = total.add(det.getImportepedagio() == null ? BigDecimal.ZERO : det.getImportepedagio());
total = total.add(det.getImporteseguro() == null ? BigDecimal.ZERO : det.getImporteseguro());
// total = total.add(det.getImportetaxaembarque() == null ? BigDecimal.ZERO : det.getImportetaxaembarque());
// total = total.add(det.getImportepedagio() == null ? BigDecimal.ZERO : det.getImportepedagio());
// total = total.add(det.getImporteseguro() == null ? BigDecimal.ZERO : det.getImporteseguro());
return total;
}