fix(稽查流程): 80634

This commit is contained in:
yjz
2024-01-18 09:36:24 +08:00
parent a511fd25e3
commit 652bcab8e4
6 changed files with 36 additions and 1 deletions
@@ -345,6 +345,13 @@ public class EsInspectFlowServiceImpl implements IEsInspectFlowService {
// map(参数)
Map<String, Object> map = esInspectFlowVO.getMap();
// 更新流程信息
processAllService.update(new LambdaUpdateWrapper<ProcessAll>()
.eq(ProcessAll::getId, processAll.getId())
.set(ProcessAll::getPrcName, processAll.getPrcName())
.set(ProcessAll::getPrcMes, processAll.getPrcMes())
.set(ProcessAll::getDueTime, processAll.getDueTime()));
// 更新流程审批信息
processApprovalRecordService.update(
new LambdaUpdateWrapper<ProcessApprovalRecord>()
@@ -257,6 +257,13 @@ public class EsInspectDelayApplyFlowServiceImpl implements IEsInspectDelayApplyF
// map(参数)
Map<String, Object> map = esInspectDelayApplyFlowVO.getMap();
// 更新流程信息
processAllService.update(new LambdaUpdateWrapper<ProcessAll>()
.eq(ProcessAll::getId, processAll.getId())
.set(ProcessAll::getPrcName, processAll.getPrcName())
.set(ProcessAll::getPrcMes, processAll.getPrcMes())
.set(ProcessAll::getDueTime, processAll.getDueTime()));
// 更新流程审批信息
processApprovalRecordService.update(
new LambdaUpdateWrapper<ProcessApprovalRecord>()
@@ -356,6 +356,13 @@ public class EsInspectPlanFlowServiceImpl implements IEsInspectPlanFlowService {
// map(参数)
Map<String, Object> map = esInspectPlanFlowVO.getMap();
// 更新流程信息
processAllService.update(new LambdaUpdateWrapper<ProcessAll>()
.eq(ProcessAll::getId, processAll.getId())
.set(ProcessAll::getPrcName, processAll.getPrcName())
.set(ProcessAll::getPrcMes, processAll.getPrcMes())
.set(ProcessAll::getDueTime, processAll.getDueTime()));
// 更新流程审批信息
processApprovalRecordService.update(
new LambdaUpdateWrapper<ProcessApprovalRecord>()
@@ -221,6 +221,13 @@ public class EsPermissionApplyFlowServiceImpl implements EsPermissionApplyFlowSe
// map(参数)
Map<String, Object> map = esPermissionApplyFlowVO.getMap();
// 更新流程信息
processAllService.update(new LambdaUpdateWrapper<ProcessAll>()
.eq(ProcessAll::getId, processAll.getId())
.set(ProcessAll::getPrcName, processAll.getPrcName())
.set(ProcessAll::getPrcMes, processAll.getPrcMes())
.set(ProcessAll::getDueTime, processAll.getDueTime()));
// 更新流程审批信息
processApprovalRecordService.update(
new LambdaUpdateWrapper<ProcessApprovalRecord>()
@@ -263,7 +263,7 @@ public class ProcessFbEntryChangeServiceImpl extends ServiceImpl<ProcessFbEntryC
List<String> replacedList = Arrays.asList(replaced.split(","));
LambdaQueryWrapper<ProcessFbEntryChange> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.in(ProcessFbEntryChange::getStandardNumber, replacedList);
queryWrapper.eq(ProcessFbEntryChange::getOperateType, "1");
queryWrapper.eq(ProcessFbEntryChange::getOperateType, "2");
List<ProcessFbEntryChange> fbEntryChangeList = list(queryWrapper);
List<String> userIdList = fbEntryChangeList.stream()
.map(ProcessFbEntryChange::getUserId)
@@ -241,6 +241,13 @@ public class MeetingManageFlowServiceImpl implements IMeetingManageFlowService {
// map(参数)
Map<String, Object> map = meetingManageFlowVO.getMap();
// 更新流程信息
processAllService.update(new LambdaUpdateWrapper<ProcessAll>()
.eq(ProcessAll::getId, processAll.getId())
.set(ProcessAll::getPrcName, processAll.getPrcName())
.set(ProcessAll::getPrcMes, processAll.getPrcMes())
.set(ProcessAll::getDueTime, processAll.getDueTime()));
// 更新流程审批信息
processApprovalRecordService.update(
new LambdaUpdateWrapper<ProcessApprovalRecord>()