From 69715bb413eeef10cb67b1ee50e2fbee222ed284 Mon Sep 17 00:00:00 2001 From: julio Date: Thu, 4 Oct 2018 13:32:03 +0000 Subject: [PATCH] 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 --- .../relatorios/impl/RelatorioDevolucaoBilhetes.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java index db54cc542..2e104aa3b 100644 --- a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java +++ b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java @@ -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; }