From 98d12b7fd8f2985905ae1c42d8b79372b10d7387 Mon Sep 17 00:00:00 2001 From: celio Date: Wed, 14 Jun 2023 12:06:11 -0300 Subject: [PATCH] fixes bug#AL-2795 --- pom.xml | 2 +- .../relatorios/impl/RelatorioComissaoSintetico.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1ab81e5b7..a8775751a 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores ventaboletosadm - 1.7.13 + 1.7.14 war diff --git a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioComissaoSintetico.java b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioComissaoSintetico.java index 407ccd63b..14726eca8 100644 --- a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioComissaoSintetico.java +++ b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioComissaoSintetico.java @@ -65,7 +65,7 @@ private Set pontoVendaConfiguracao; stmt.setTimestamp("DATA_INICIAL", new Timestamp(DateUtil.inicioFecha((Date) parametros.get("DATA_INICIAL")).getTime())); - stmt.setTimestamp("DATA_FINAL", new Timestamp(DateUtil.fimFecha((Date) parametros.get("DATA_INICIAL")).getTime())); + stmt.setTimestamp("DATA_FINAL", new Timestamp(DateUtil.fimFecha((Date) parametros.get("DATA_FINAL")).getTime())); if(empresaID != null && !empresaID.equals("")){ stmt.setInt("EMPRESA_ID", Integer.parseInt(empresaID));