Skip to content

Commit

Permalink
Process count workflow (#884)
Browse files Browse the repository at this point in the history
* Like operator in searcher issue (#819)

* Added missed AND inside process count query (#883)
  • Loading branch information
narendrabandhamneni-wt-egov authored Jul 29, 2021
1 parent ec98224 commit f8601b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public String getInboxIdQuery(ProcessInstanceSearchCriteria criteria, List<Objec
with_query_builder.append(clause);
}
else {
with_query_builder.append(" id in (select processinstanceid from eg_wf_assignee_v2 asg_inner where asg_inner.assignee = ?) AND pi_outer.tenantid = ? ");
with_query_builder.append(" AND id in (select processinstanceid from eg_wf_assignee_v2 asg_inner where asg_inner.assignee = ?) AND pi_outer.tenantid = ? ");
preparedStmtList.add(criteria.getAssignee());
preparedStmtList.add(criteria.getTenantId());
}
Expand Down

0 comments on commit f8601b3

Please sign in to comment.