File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ protected ItWorkDaoImpl() {
4242 AllFieldsSearch = createSearchBuilder ();
4343 AllFieldsSearch .and ("instance" , AllFieldsSearch .entity ().getInstanceId (), Op .EQ );
4444 AllFieldsSearch .and ("op" , AllFieldsSearch .entity ().getType (), Op .EQ );
45- AllFieldsSearch .and ("step" , AllFieldsSearch .entity ().getStep (), Op .NEQ );
45+ AllFieldsSearch .and ("step" , AllFieldsSearch .entity ().getStep (), Op .EQ );
4646 AllFieldsSearch .done ();
4747
4848 CleanupSearch = createSearchBuilder ();
@@ -64,7 +64,7 @@ protected ItWorkDaoImpl() {
6464
6565 @ Override
6666 public ItWorkVO findByOutstandingWork (long instanceId , State state ) {
67- SearchCriteria <ItWorkVO > sc = AllFieldsSearch .create ();
67+ SearchCriteria <ItWorkVO > sc = OutstandingWorkSearch .create ();
6868 sc .setParameters ("instance" , instanceId );
6969 sc .setParameters ("op" , state );
7070 sc .setParameters ("step" , Step .Done );
You can’t perform that action at this time.
0 commit comments