Horário de verão e fuso horário configurado por UF.

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@31334 d1611594-4594-4d17-8e1d-87c2c4800839
master
julio 2013-10-02 15:39:54 +00:00
parent 0e2a053244
commit 26cca6a23a
1 changed files with 5 additions and 0 deletions

View File

@ -525,6 +525,8 @@ public class SQLBuilderOracle implements SQLBuilder {
sb.append(" and c.id.corridaId = cq.id.corridaId ");
sb.append(" and c.id.feccorrida = cq.id.feccorrida ");
sb.append(" ) ");
sb.append(" where cq.id.corridaId = :corridaId ");
sb.append(" and cq.id.feccorrida = :feccorrida ");
return sb.toString();
}
@ -590,6 +592,9 @@ public class SQLBuilderOracle implements SQLBuilder {
sb.append(" and ctq.corridatramoId = ct.corridatramoId ");
sb.append(" ) ");
sb.append(" where ctq.corrida.id.corridaId = :corridaId ");
sb.append(" and ctq.corrida.id.feccorrida = :feccorrida ");
return sb.toString();
}