melhorando a ordenação da query.. mantis 6440

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@45971 d1611594-4594-4d17-8e1d-87c2c4800839
master
daniel.zauli 2015-07-13 16:28:05 +00:00
parent a78d6e28b2
commit d0338243ce
1 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,8 @@ public class RelatorioDiferencasTransferencias extends Relatorio {
sql.append(" WHEN cs_orig.DESCCLASE = cs_novo.DESCCLASE THEN 1 ");
sql.append(" WHEN cs_orig.DESCCLASE <> cs_novo.DESCCLASE THEN 2 ");
sql.append(" ELSE 3 ");
sql.append(" END asc ");
sql.append(" END asc, ");
sql.append(" cs_orig.DESCCLASE ");
return sql.toString();
}