Commit 4b823c1b authored by 王果's avatar 王果

21188 【web端】监管业务>业务办理,一码通补录设备及登记后,登记证无法打印提示监管码为空

parent 7f74480a
...@@ -2059,9 +2059,9 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD ...@@ -2059,9 +2059,9 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
*/ */
private void fillHistoryDataWithNewEquip(JSONObject jsonObject, JgUseRegistration jgUseRegistration, String record) { private void fillHistoryDataWithNewEquip(JSONObject jsonObject, JgUseRegistration jgUseRegistration, String record) {
// 非已完成、非作废时显示设备最新信息。前置需求:一个设备只能同时发起一个流程 // 非已完成、非作废时显示设备最新信息。前置需求:一个设备只能同时发起一个流程
if (!(FlowStatusEnum.TO_BE_FINISHED.getName().equals(jgUseRegistration.getStatus()) if (!(jgUseRegistration.getStatus().equals(FlowStatusEnum.TO_BE_FINISHED.getName())
|| FlowStatusEnum.TO_BE_DISCARD.getName().equals(jgUseRegistration.getStatus())) || jgUseRegistration.getStatus().equals(FlowStatusEnum.TO_BE_DISCARD.getName()))
|| "1".equals(jgUseRegistration.getRegType())) { || jgUseRegistration.getRegType().equals("1")) {
// 基本信息 + 制造信息 // 基本信息 + 制造信息
Map<String, Object> detail = this.baseMapper.getDetail(record); Map<String, Object> detail = this.baseMapper.getDetail(record);
// 设计信息 // 设计信息
...@@ -2158,6 +2158,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD ...@@ -2158,6 +2158,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
// 更新使用登记业务表 // 更新使用登记业务表
jgUseRegistration.setSupervisoryCode(String.valueOf(result.get("superviseCode"))); jgUseRegistration.setSupervisoryCode(String.valueOf(result.get("superviseCode")));
} }
}else {
jgUseRegistration.setSupervisoryCode(otherInfo.getSupervisoryCode());
} }
otherInfo.setClaimStatus("已认领"); otherInfo.setClaimStatus("已认领");
otherInfoMapper.updateById(otherInfo); otherInfoMapper.updateById(otherInfo);
...@@ -2642,9 +2644,10 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD ...@@ -2642,9 +2644,10 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
// 生成监管码 96333码 // 生成监管码 96333码
this.createCode(map, jgUseRegistration, registerInfo, useInfo, otherInfo); this.createCode(map, jgUseRegistration, registerInfo, useInfo, otherInfo);
map.put("EQU_CODE", registerInfo.getEquCode()); map.put("equCode", equCode);
// 更新es // 更新es
this.updateEsData(usePlace, map, otherInfo, jgUseRegistration, map); this.updateEsData(usePlace, map, otherInfo, jgUseRegistration, map);
this.updateById(jgUseRegistration);
// 设备安装信息更新 // 设备安装信息更新
this.historyEquUpdateInstallInfo(map); this.historyEquUpdateInstallInfo(map);
......
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