Commit aa2e27a0 authored by 刘林's avatar 刘林

fix(jg):暂存功能问题处理

parent 5e52fc76
...@@ -27,6 +27,7 @@ public class InstallNoticeStrategyHandler implements ToBeSubmitDetailStrategy { ...@@ -27,6 +27,7 @@ public class InstallNoticeStrategyHandler implements ToBeSubmitDetailStrategy {
basic.put("receiveOrgCreditCode", installationInfo.get("receiveOrgCreditCode")); basic.put("receiveOrgCreditCode", installationInfo.get("receiveOrgCreditCode"));
basic.put("code", installationInfo.get("equListCode")); basic.put("code", installationInfo.get("equListCode"));
basic.put("equCategory", installationInfo.get("equCategoryCode")); basic.put("equCategory", installationInfo.get("equCategoryCode"));
installationInfo.put("equCategory", installationInfo.get("equCategoryCode"));
Map<String, Map<String, Object>> result = new HashMap<>(); Map<String, Map<String, Object>> result = new HashMap<>();
result.put("notice", installationInfo); result.put("notice", installationInfo);
result.put("basic", basic); result.put("basic", basic);
......
...@@ -25,10 +25,14 @@ public class RegistrationReformStrategyHandler implements ToBeSubmitDetailStrate ...@@ -25,10 +25,14 @@ public class RegistrationReformStrategyHandler implements ToBeSubmitDetailStrate
basic.put("receiveOrgCreditCode1", notice.get("receiveCompanyCode")); basic.put("receiveOrgCreditCode1", notice.get("receiveCompanyCode"));
basic.put("businessScenarios", "0"); basic.put("businessScenarios", "0");
basic.put("code", notice.get("EQU_LIST_CODE")); basic.put("code", notice.get("EQU_LIST_CODE"));
Map<String, Object> responseDetail = (Map<String, Object>) notice.get("responseDetail");
if (responseDetail != null) {
responseDetail.put("techInfo", notice.get("techInfo"));
}
notice.put("responseDetail", responseDetail);
Map<String, Map<String, Object>> result = new HashMap<>(); Map<String, Map<String, Object>> result = new HashMap<>();
result.put("notice", notice); result.put("notice", notice);
result.put("basic", basic); result.put("basic", basic);
result.put("techInfo", (Map<String, Object>) notice.get("techInfo"));
useRegFormUpload.put("uploadMode", notice.get("uploadMode")); useRegFormUpload.put("uploadMode", notice.get("uploadMode"));
useRegFormUpload.put("useRegistrationFormUrl", notice.get("useRegistrationFormUrl")); useRegFormUpload.put("useRegistrationFormUrl", notice.get("useRegistrationFormUrl"));
useRegFormUpload.put("applicationFormFileUrl", notice.get("applicationFormFileUrl")); useRegFormUpload.put("applicationFormFileUrl", notice.get("applicationFormFileUrl"));
......
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