From c54a3e99dc07c7a8bf26fccd903e2f2bb46de884 Mon Sep 17 00:00:00 2001 From: valdevir Date: Tue, 23 Jan 2024 11:00:13 -0300 Subject: [PATCH] fixes bug #AL-3735 --- pom.xml | 2 +- .../ventaboletos/dao/hibernate/TarifaHibernateDAO.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9afa6c73e..7e960d7ca 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.32.1 + 1.32.2 diff --git a/src/com/rjconsultores/ventaboletos/dao/hibernate/TarifaHibernateDAO.java b/src/com/rjconsultores/ventaboletos/dao/hibernate/TarifaHibernateDAO.java index 83e5504e7..e3bc56f06 100644 --- a/src/com/rjconsultores/ventaboletos/dao/hibernate/TarifaHibernateDAO.java +++ b/src/com/rjconsultores/ventaboletos/dao/hibernate/TarifaHibernateDAO.java @@ -285,7 +285,7 @@ public class TarifaHibernateDAO extends GenericHibernateDAO imp StringBuilder hql = new StringBuilder(); try { hql.append(" update Tarifa tb set activo = 0, fecmodif = sysdate(), usuarioId = ").append(usuarioModifId).append(" where tarifaId in ("); - hql.append(" select tb.tarifaId from Tarifa t "); + hql.append(" select t.tarifaId from Tarifa t "); if (vende != null) { hql.append(" inner join tb.ruta.rutaCombinacionList AS rutaCombinacionList" );