diff --git a/pom.xml b/pom.xml index 5673681fa..149b04a1f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores ventaboletosadm - 1.102.4 + 1.102.5 war diff --git a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioBoletos.java b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioBoletos.java index bd19935a8..ce2e3849b 100644 --- a/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioBoletos.java +++ b/src/java/com/rjconsultores/ventaboletos/relatorios/impl/RelatorioBoletos.java @@ -162,7 +162,7 @@ public class RelatorioBoletos extends Relatorio { } if(filtrarPendentes) { - sql.append(" AND fb.indboletoquitado is null "); + sql.append(" AND (fb.indboletoquitado is null or fb.indboletoquitado = 0) "); } sql.append(" ORDER BY nombempresa, p.numpuntoventa, fcc.fecfechamento ");