Commit 0a80d42b authored by 韩桐桐's avatar 韩桐桐

fix(jg):使用登记详情查询修改

parent aaff525e
......@@ -802,8 +802,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
if (!ObjectUtils.isEmpty(jsonObject.get("installContractAttachment"))){
jsonObject.put("installContractAttachment", JSON.parse(String.valueOf(jsonObject.get("installContractAttachment"))));
}
if (!ObjectUtils.isEmpty(jsonObject.get("proxyStatementAttachment"))){
jsonObject.put("proxyStatementAttachment", JSON.parse(String.valueOf(jsonObject.get("proxyStatementAttachment"))));
if (!ObjectUtils.isEmpty(jsonObject.get("installProxyStatementAttachment"))){
jsonObject.put("installProxyStatementAttachment", JSON.parse(String.valueOf(jsonObject.get("installProxyStatementAttachment"))));
}
return jsonObject;
}
......@@ -846,7 +846,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
detail.put("otherAccessoriesDes", JSON.parse(String.valueOf(detail.get("otherAccessoriesDes"))));
detail.put("otherAccessoriesFact", JSON.parse(String.valueOf(detail.get("otherAccessoriesFact"))));
detail.put("otherAccessoriesReg", JSON.parse(String.valueOf(detail.get("otherAccessoriesReg"))));
detail.put("proxyStatementAttachment", JSON.parse(String.valueOf(detail.get("proxyStatementAttachment"))));
detail.put("installProxyStatementAttachment", JSON.parse(String.valueOf(detail.get("installProxyStatementAttachment"))));
detail.put("installContractAttachment", JSON.parse(String.valueOf(detail.get("installContractAttachment"))));
detail.put("insOtherAccessories", JSON.parse(String.valueOf(detail.get("insOtherAccessories"))));
detail.put("maintenanceContract", JSON.parse(String.valueOf(detail.get("maintenanceContract"))));
......
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