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" );