Merge remote-tracking branch 'origin/master'

This commit is contained in:
ye1023
2026-05-18 09:48:25 +08:00
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)