Commit bf7c0046 authored by 刘林's avatar 刘林

fix(jg):车用气瓶变更三级审批处理

parent 0d0e8773
...@@ -630,12 +630,12 @@ public class JgChangeVehicleRegistrationUnitServiceImpl extends BaseService<JgCh ...@@ -630,12 +630,12 @@ public class JgChangeVehicleRegistrationUnitServiceImpl extends BaseService<JgCh
idxBizJgUseInfoServiceImpl.update(useInfo, lambda); idxBizJgUseInfoServiceImpl.update(useInfo, lambda);
// 更新监管信息 // 更新监管信息
IdxBizJgSupervisionInfo supervisionInfo = idxBizJgSupervisionInfoService.lambdaQuery(). IdxBizJgSupervisionInfo supervisionInfo = new IdxBizJgSupervisionInfo();
eq(IdxBizJgSupervisionInfo::getRecord, collect). LambdaQueryWrapper<IdxBizJgSupervisionInfo> supervisionInfoLambda = new QueryWrapper<IdxBizJgSupervisionInfo>().lambda();
one();
supervisionInfo.setOrgBranchName(jgChangeVehicleRegistrationUnit.getOrgBranchName()); supervisionInfo.setOrgBranchName(jgChangeVehicleRegistrationUnit.getOrgBranchName());
supervisionInfo.setOrgBranchCode(jgChangeVehicleRegistrationUnit.getOrgBranchCode()); supervisionInfo.setOrgBranchCode(jgChangeVehicleRegistrationUnit.getOrgBranchCode());
idxBizJgSupervisionInfoService.saveOrUpdate(supervisionInfo); supervisionInfoLambda.in(IdxBizJgSupervisionInfo::getRecord, collect);
idxBizJgSupervisionInfoService.update(supervisionInfo, supervisionInfoLambda);
// 区内变更 // 区内变更
if ("1".equals(jgChangeVehicleRegistrationUnit.getChangeType()) && !ObjectUtils.isEmpty(collect)) { if ("1".equals(jgChangeVehicleRegistrationUnit.getChangeType()) && !ObjectUtils.isEmpty(collect)) {
......
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