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