Commit d1fd963b authored by 赵啸非's avatar 赵啸非

修改部分pom

parent f676db99
...@@ -437,10 +437,10 @@ public class FlowTaskServiceImpl extends FlowServiceFactory implements IApiFlowT ...@@ -437,10 +437,10 @@ public class FlowTaskServiceImpl extends FlowServiceFactory implements IApiFlowT
flowTask.setAssigneeId(histIns.getAssignee()); flowTask.setAssigneeId(histIns.getAssignee());
} }
Task task = taskService.createTaskQuery().taskId(histIns.getTaskId()).singleResult(); HistoricTaskInstance historicTaskInstance = historyService.createHistoricTaskInstanceQuery().taskId(histIns.getTaskId()).singleResult();
if (!ObjectUtils.isEmpty(task)) { if (!ObjectUtils.isEmpty(historicTaskInstance)) {
flowTask.setTaskName(task.getName()); flowTask.setTaskName(historicTaskInstance.getName());
flowTask.setTaskId(task.getId()); flowTask.setTaskId(historicTaskInstance.getId());
} }
//获取任务action 通过commentInfo获取 //获取任务action 通过commentInfo获取
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment