|
|
@@ -1853,7 +1853,7 @@ public class TaskController extends BladeController {
|
|
|
List<Task> filteredList = allResultList.stream()
|
|
|
.filter(task -> {
|
|
|
// 获取任务流程信息,判断是否是垂直签
|
|
|
- if (task.getFixedFlowId() != null && fixedsMap.containsKey(task.getFixedFlowId())) {
|
|
|
+ if (task.getFixedFlowId() != null && fixedsMap.containsKey(task.getFixedFlowId()) && dto.getSelectedType() == 1) {
|
|
|
// 预设流程
|
|
|
List<FixedFlowLink> fixedFlowLinks = fixedsMap.get(task.getFixedFlowId());
|
|
|
List<FixedFlowLink> linkList = fixedFlowLinks.stream().filter(link -> link.getFixedFlowLinkType() == null).collect(Collectors.toList());
|