Fix syntax error in orders query
Change "=" for "IN". FEA: ItEr77S15FilteringEnhancements
This commit is contained in:
parent
5044e541c2
commit
f02d6f8a8d
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ public class OrderDAO extends IntegrationEntityDAO<Order> implements
|
|||
} else {
|
||||
where += "AND ";
|
||||
}
|
||||
where += "o.id = :ids ";
|
||||
where += "o.id IN (:ids) ";
|
||||
}
|
||||
|
||||
strQuery += where;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue