|
@@ -770,6 +770,9 @@ public class FlowTaskServiceImpl extends FlowServiceFactory implements IFlowTask
|
770
|
770
|
if (StringUtils.isNotBlank(queryVo.getCategory())){
|
771
|
771
|
taskQuery.processCategoryIn(Collections.singleton(queryVo.getCategory()));
|
772
|
772
|
}
|
|
773
|
+ if (StringUtils.isNotBlank(queryVo.getProcessInsId())){
|
|
774
|
+ taskQuery.processInstanceIdIn(Collections.singleton(queryVo.getProcessInsId()));
|
|
775
|
+ }
|
773
|
776
|
page.setTotal(taskQuery.count());
|
774
|
777
|
List<Task> taskList = taskQuery.listPage(queryVo.getPageSize() * (queryVo.getPageNum() - 1), queryVo.getPageSize());
|
775
|
778
|
List<FlowTaskDto> flowList = new ArrayList<>();
|