bug 9161: findByOutstandingWork means find all works with step not equal Done

This commit is contained in:
anthony 2011-03-31 18:01:42 -07:00
parent ea95ac1808
commit f3fbe7b9fe
1 changed files with 1 additions and 1 deletions

View File

@ -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();