fixes bug#AL-4578

master
celio 2024-07-09 19:56:00 -03:00
parent 9471b2943c
commit da0ee2f4bc
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ventaboletosadm</artifactId> <artifactId>ventaboletosadm</artifactId>
<version>1.102.4</version> <version>1.102.5</version>
<packaging>war</packaging> <packaging>war</packaging>
<properties> <properties>

View File

@ -162,7 +162,7 @@ public class RelatorioBoletos extends Relatorio {
} }
if(filtrarPendentes) { 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 "); sql.append(" ORDER BY nombempresa, p.numpuntoventa, fcc.fecfechamento ");