From 783171bf3586b413ab038bec12361fb4e579af20 Mon Sep 17 00:00:00 2001 From: julio Date: Wed, 3 Oct 2018 18:08:27 +0000 Subject: [PATCH] bug#11600 dev: julio qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@85875 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../impl/RelatorioDevolucaoBilhetes.java | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java index 1a8f9f4d6..db54cc542 100644 --- a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java +++ b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioDevolucaoBilhetes.java @@ -309,15 +309,14 @@ public class RelatorioDevolucaoBilhetes extends Relatorio { private BigDecimal valorIsenta(DevolucaoBilhetes det) { BigDecimal total = BigDecimal.ZERO; - if (det.isEstadual() && !det.getIndTxEmbarqueEstadual() || !det.isEstadual() && !det.getIndTxEmbarqueMunicipal()) - total = total.add(det.getImportetaxaembarque() == null ? BigDecimal.ZERO : det.getImportetaxaembarque()); - - if (det.isEstadual() && !det.getIndPedadioEstdual() || !det.isEstadual() && !det.getIndPedagioMunicipal()) - total = total.add(det.getImportepedagio() == null ? BigDecimal.ZERO : det.getImportepedagio()); - - if (det.isEstadual() && !det.getIndSeguroEstadual() || !det.isEstadual() && !det.getIndSeguroMunicipal()) - total = total.add(det.getImporteseguro() == null ? BigDecimal.ZERO : det.getImporteseguro()); - + // if (det.isEstadual() && !det.getIndTxEmbarqueEstadual() || !det.isEstadual() && !det.getIndTxEmbarqueMunicipal()) + // total = total.add(det.getImportetaxaembarque() == null ? BigDecimal.ZERO : det.getImportetaxaembarque()); + // + // if (det.isEstadual() && !det.getIndPedadioEstdual() || !det.isEstadual() && !det.getIndPedagioMunicipal()) + // total = total.add(det.getImportepedagio() == null ? BigDecimal.ZERO : det.getImportepedagio()); + // + // if (det.isEstadual() && !det.getIndSeguroEstadual() || !det.isEstadual() && !det.getIndSeguroMunicipal()) + // total = total.add(det.getImporteseguro() == null ? BigDecimal.ZERO : det.getImporteseguro()); return total; }