Skip to content

Commit

Permalink
Corretta consultazione tipi spesa
Browse files Browse the repository at this point in the history
  • Loading branch information
gifracr committed Apr 11, 2017
1 parent 4c45f34 commit fcb25bb
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -137,7 +137,7 @@ protected Query select(UserContext userContext, CompoundFindClause compoundfindc
Boolean ammissibileConRimborso = null;

while(e1.hasMoreElements() ){
FindClause findClause = (FindClause) e.nextElement();
FindClause findClause = (FindClause) e1.nextElement();
if (findClause instanceof SimpleFindClause){
SimpleFindClause clause = (SimpleFindClause)findClause;
int operator = clause.getOperator();
Expand Down Expand Up @@ -194,7 +194,7 @@ protected Query select(UserContext userContext, CompoundFindClause compoundfindc
String tipoAuto = null;

while(e1.hasMoreElements() ){
FindClause findClause = (FindClause) e.nextElement();
FindClause findClause = (FindClause) e1.nextElement();
if (findClause instanceof SimpleFindClause){
SimpleFindClause clause = (SimpleFindClause)findClause;
int operator = clause.getOperator();
Expand Down Expand Up @@ -245,7 +245,7 @@ protected Query select(UserContext userContext, CompoundFindClause compoundfindc
Long inquadramento = null;

while(e1.hasMoreElements() ){
FindClause findClause = (FindClause) e.nextElement();
FindClause findClause = (FindClause) e1.nextElement();
if (findClause instanceof SimpleFindClause){
SimpleFindClause clause = (SimpleFindClause)findClause;
int operator = clause.getOperator();
Expand Down

0 comments on commit fcb25bb

Please sign in to comment.