diff --git a/pom.xml b/pom.xml
index 8c05f5dcc..c04c0c901 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
br.com.rjconsultores
ModelWeb
- 1.12.1
+ 1.13.0
diff --git a/src/com/rjconsultores/ventaboletos/dao/hibernate/EsquemaTramoHibernateDAO.java b/src/com/rjconsultores/ventaboletos/dao/hibernate/EsquemaTramoHibernateDAO.java
index a501547ed..f5f1fdf88 100644
--- a/src/com/rjconsultores/ventaboletos/dao/hibernate/EsquemaTramoHibernateDAO.java
+++ b/src/com/rjconsultores/ventaboletos/dao/hibernate/EsquemaTramoHibernateDAO.java
@@ -49,7 +49,7 @@ public class EsquemaTramoHibernateDAO extends GenericHibernateDAO obtenerAtivosDesativosPorEsquemaCorrida(EsquemaCorrida esquemaCorrida) {
Criteria c = getSession().createCriteria(getPersistentClass());
c.add(Restrictions.eq("esquemaCorrida", esquemaCorrida));
- //c.add(Restrictions.eq("activo", Boolean.TRUE));
+ c.add(Restrictions.eq("activo", Boolean.TRUE));
c.addOrder(Order.asc("numsecuencia"));
return c.list();