wsm-xispeak-收集后反馈流程

删除关联流程
This commit is contained in:
wsm
2026-05-15 16:39:11 +08:00
parent e2e3b913d8
commit 5a629c9088
16 changed files with 634 additions and 117 deletions
@@ -43,6 +43,14 @@ public class TaskTaskServiceImpl extends ServiceImpl<TaskTaskMapper, TaskTask> i
newTask.setStartTime(null);
this.save(newTask);
Result<String> res = bpmBaseExtApiImpl.startMutilProcess(taskTask.getFlowCode(), newTask.getId(), taskTask.getFormUrl(), taskTask.getFormUrl(), userName, jsonString);
String procId = res.getResult();
if(StringUtils.isBlank(procId)){
log.warn("流程启动失败");
return false;
}else{
newTask.setProcessInstId(procId);
}
this.updateById(newTask);
return res.isSuccess();
}
@Transactional(rollbackFor = Exception.class)