Merge remote-tracking branch 'origin/master'
commit
19e44336f7
|
|
@ -786,7 +786,9 @@ public class FlowTaskServiceImpl extends FlowServiceFactory implements IFlowTask
|
||||||
SysUser startUser = sysUserService.selectUserById(Long.parseLong(historicProcessInstance.getStartUserId()));
|
SysUser startUser = sysUserService.selectUserById(Long.parseLong(historicProcessInstance.getStartUserId()));
|
||||||
flowTask.setStartUserId(startUser.getNickName());
|
flowTask.setStartUserId(startUser.getNickName());
|
||||||
flowTask.setStartUserName(startUser.getNickName());
|
flowTask.setStartUserName(startUser.getNickName());
|
||||||
flowTask.setStartDeptName(startUser.getDept().getDeptName());
|
if(Objects.nonNull(startUser.getDept())) {
|
||||||
|
flowTask.setStartDeptName(startUser.getDept().getDeptName());
|
||||||
|
}
|
||||||
hisTaskList.add(flowTask);
|
hisTaskList.add(flowTask);
|
||||||
}
|
}
|
||||||
page.setTotal(taskInstanceQuery.count());
|
page.setTotal(taskInstanceQuery.count());
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,9 @@ export default {
|
||||||
if (element.type === 'bpmn:Process'
|
if (element.type === 'bpmn:Process'
|
||||||
|| element.type === 'bpmn:SequenceFlow'
|
|| element.type === 'bpmn:SequenceFlow'
|
||||||
|| element.type === 'bpmn:EndEvent' ) {
|
|| element.type === 'bpmn:EndEvent' ) {
|
||||||
this.element = element
|
this.$nextTick().then(() => {
|
||||||
|
this.element = element
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.modeler.on('selection.changed', e => {
|
this.modeler.on('selection.changed', e => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue