Commit 4b0f6826 authored by suhuiguang's avatar suhuiguang

feat(jg):行政审批局

1.补证登记详情,接收机构信息,实时查询,兼容数据刷新后逻辑
parent a8a562c9
......@@ -92,6 +92,7 @@ public class JgCertificateReplenishServiceImpl extends BaseService<JgCertificate
public static final String EQU_LISTS = "equLists";
public static final String EQU_LIST_CODE = "equListCode";
public static final String RECEIVE_ORG_CODE = "receiveOrgCode";
public static final String RECEIVE_ORG_NAME = "receiveOrgName";
public static final String APPLICATION_FORM_FILE = "applicationFormFile";
public static final String OTHER_ACCESSORIES = "otherAccessories";
public static final String SAFETY_MANAGER_ID = "safetyManagerId";
......@@ -963,6 +964,8 @@ public class JgCertificateReplenishServiceImpl extends BaseService<JgCertificate
jsonObject.put(APPLY_STATUS, FlowStatusEnum.TO_BE_FINISHED.getCode());
ATTACHMENT_FIELD.forEach(item -> jsonObject.put(item, JSONObject.parse(jsonObject.getString(item))));
jsonObject.put(APPLICATION_FORM_FILE_URL, certRep.getApplicationFormFileUrl());
jsonObject.put(RECEIVE_ORG_CODE, certRep.getReceiveOrgCode());
jsonObject.put(RECEIVE_ORG_NAME, certRep.getReceiveOrgName());
return jsonObject;
} else {
ObjectMapper mapper = new ObjectMapper();
......
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