fixes bug#AL-4916
parent
ace509bcd3
commit
8b9834e946
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.152.1</version>
|
||||
<version>1.152.2</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -58,6 +58,7 @@ public class RelatorioPosicaoVendaBilheteIdosoPorPassageiro extends Relatorio {
|
|||
if (!RelatorioPosicaoVendaBilheteIdosoController.LISTAR_TODAS.equals(parametros.get("rutaId"))) {
|
||||
instrucaoSql.append("AND C.RUTA_ID IN ("+parametros.get("rutaId").toString()+") ");
|
||||
}
|
||||
instrucaoSql.append(" AND C.MOTIVOCANCELACION_ID IS NULL ");
|
||||
instrucaoSql.append("ORDER BY R.DESCRUTA, CAT.DESCCATEGORIA ");
|
||||
}
|
||||
|
||||
|
|
|
@ -58,6 +58,7 @@ public class RelatorioPosicaoVendaBilheteIdosoPorTrecho extends Relatorio {
|
|||
if (!RelatorioPosicaoVendaBilheteIdosoController.LISTAR_TODAS.equals(parametros.get("rutaId"))) {
|
||||
instrucaoSql.append("AND C.RUTA_ID IN ("+parametros.get("rutaId").toString()+") ");
|
||||
}
|
||||
instrucaoSql.append(" AND C.MOTIVOCANCELACION_ID IS NULL ");
|
||||
instrucaoSql.append("GROUP BY R.DESCRUTA, ");
|
||||
instrucaoSql.append("CAT.DESCCATEGORIA, ");
|
||||
instrucaoSql.append("ORIGEM.DESCPARADA, ");
|
||||
|
|
Loading…
Reference in New Issue