From 6d5ae0acf989edfe481c8b1689c9669412ae25d0 Mon Sep 17 00:00:00 2001 From: "daniel.zauli" Date: Fri, 27 Apr 2018 21:08:17 +0000 Subject: [PATCH] =?UTF-8?q?10827:=20Relat=C3=B3rio=20de=20Taxa=20de=20Emba?= =?UTF-8?q?rque=20sem=20o=20ICMS=20bug#10827=20dev:leo=20qua:fabim?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@81453 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/relatorios/impl/RelatorioTaxasLinha.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioTaxasLinha.java b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioTaxasLinha.java index b7098051e..00f1192fc 100644 --- a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioTaxasLinha.java +++ b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioTaxasLinha.java @@ -129,7 +129,7 @@ public class RelatorioTaxasLinha extends Relatorio { taxasLinha.setIMPORTESEGURO(importeSeguro); if(!totalEmbarque.equals(BigDecimal.ZERO) && (Boolean) this.relatorio.getParametros().get("B_SUBTRAIR_ICMS")){ - valorIcms = CalculoImposto.getValorImposto(this.relatorio.getConexao(), idEstado, empresaId, indInterestadual, BigDecimal.ZERO, totalEmbarque, BigDecimal.ZERO, BigDecimal.ZERO); + valorIcms = CalculoImposto.getValorImposto(this.relatorio.getConexao(), idEstado, empresaId, indInterestadual, BigDecimal.ZERO, BigDecimal.ZERO, totalEmbarque , BigDecimal.ZERO); totalEmbarque = totalEmbarque.subtract(valorIcms); } taxasLinha.setTOTAL_EMBARQUE(totalEmbarque);