mirror of https://github.com/apache/cloudstack.git
bug 9161: findByOutstandingWork means find all works with step not equal Done
This commit is contained in:
parent
ea95ac1808
commit
f3fbe7b9fe
|
|
@ -42,7 +42,7 @@ public class ItWorkDaoImpl extends GenericDaoBase<ItWorkVO, String> implements I
|
|||
AllFieldsSearch = createSearchBuilder();
|
||||
AllFieldsSearch.and("instance", AllFieldsSearch.entity().getInstanceId(), Op.EQ);
|
||||
AllFieldsSearch.and("op", AllFieldsSearch.entity().getType(), Op.EQ);
|
||||
AllFieldsSearch.and("step", AllFieldsSearch.entity().getStep(), Op.EQ);
|
||||
AllFieldsSearch.and("step", AllFieldsSearch.entity().getStep(), Op.NEQ);
|
||||
AllFieldsSearch.done();
|
||||
|
||||
CleanupSearch = createSearchBuilder();
|
||||
|
|
|
|||
Loading…
Reference in New Issue