Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -42,25 +42,6 @@ public class ActRuExecutionServiceImpl extends ServiceImpl<ActRuExecutionMapper,
|
||||
Page<ActRuExecution> executionPage = this.page(page.build(), lqw);
|
||||
List<ActRuExecution> records = executionPage.getRecords();
|
||||
this.findChildren(records);
|
||||
// for (ActRuExecution record : records) {
|
||||
// LambdaQueryWrapper<ActRuExecution> lambdaQueryWrapper = new LambdaQueryWrapper<>();
|
||||
// lambdaQueryWrapper.eq(ActRuExecution::getParent_id, record.getProc_inst_id());
|
||||
// List<ActRuExecution> list = this.list(lambdaQueryWrapper);
|
||||
// ActReProcdef procdef = procdefService.getById(record.getDeployment_id());
|
||||
// if (ObjectUtil.isNotEmpty(procdef)) {
|
||||
// record.setDeployment_name(procdef.getName());
|
||||
// }
|
||||
// if (CollectionUtil.isNotEmpty(list)) {
|
||||
// for (ActRuExecution execution : list) {
|
||||
// ActReProcdef procdefChildren = procdefService.getById(execution.getDeployment_id());
|
||||
// if (ObjectUtil.isNotEmpty(procdefChildren)) {
|
||||
// execution.setDeployment_name(procdefChildren.getName());
|
||||
// }
|
||||
// }
|
||||
// record.setHasChildren(true);
|
||||
// record.setChildren(list);
|
||||
// }
|
||||
// }
|
||||
return TableDataInfo.build(executionPage);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user