fixes bug#AL-4231

master
wallace.henrique 2024-05-07 11:06:20 -03:00
parent 1337947688
commit db4ed1ca68
2 changed files with 2 additions and 3 deletions

View File

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

View File

@ -202,7 +202,7 @@ public class RelatorioEstoque extends Relatorio {
StringBuilder sb = new StringBuilder();
sb.append(" select TB.aidfId as aidfId, ");
sb.append(" select DISTINCT TB.aidfId as aidfId, ");
sb.append(" TB.serie as serie, ");
sb.append(" TB.folioCaja as folioCaja, ");
sb.append(" TB.folioInicial as folioInicial, ");
@ -379,7 +379,6 @@ public class RelatorioEstoque extends Relatorio {
sb.append(" ORDER BY TB.aidfId, ");
sb.append(" TB.serie, ");
sb.append(" TB.folioCaja ");
System.out.println(sb.toString());
return sb.toString();