Commit df61dfb6 by 翁国栋

更新存入日志

parent e91ea3bc
...@@ -804,8 +804,7 @@ public class InsureContorll { ...@@ -804,8 +804,7 @@ public class InsureContorll {
Map dataMap = JSONObject.parseObject(data, Map.class); Map dataMap = JSONObject.parseObject(data, Map.class);
if (dataMap != null) { if (dataMap != null) {
if ((dataMap.get("errcode").toString().equals("suc"))) { if ((dataMap.get("errcode").toString().equals("suc"))) {
Object o = dataMap.get("data"); Map<String, Object> map = JSONObject.parseObject(JSONObject.toJSONString(dataMap.get("data")));
Map<String, Object> map = JSONObject.parseObject(JSONObject.toJSONString(o));
Map policyMap = JSONObject.parseObject(JSONObject.toJSONString(map.get("policy")), Map.class); Map policyMap = JSONObject.parseObject(JSONObject.toJSONString(map.get("policy")), Map.class);
i.setPolicyNo(policyMap.get("policy_no").toString()); i.setPolicyNo(policyMap.get("policy_no").toString());
i.setPolicyFile(policyMap.get("policy_file").toString()); i.setPolicyFile(policyMap.get("policy_file").toString());
...@@ -824,8 +823,13 @@ public class InsureContorll { ...@@ -824,8 +823,13 @@ public class InsureContorll {
user.updateById(); user.updateById();
YgglMainEmp.builder().isInsure(1).build().update(new QueryWrapper<YgglMainEmp>().lambda().eq(YgglMainEmp::getId, user.getUserId())); YgglMainEmp.builder().isInsure(1).build().update(new QueryWrapper<YgglMainEmp>().lambda().eq(YgglMainEmp::getId, user.getUserId()));
}); });
Map companyApplicantMap = JSONObject.parseObject(JSONObject.toJSONString(map.get("company_applicant")), Map.class);
InsureLog.builder().requestParam(JSONObject.toJSONString(setParams(JSONObject.toJSONString(bodyMap), appid, secret))).type(1)
.requestData(JSONObject.toJSONString(bodyMap)).createTime(new Date()).requestType(1).returnBody(JSONObject.toJSONString(dataMap)).requestPath(insuredUrl)
.returnCode(dataMap.get("errcode").toString()).returnMsg(dataMap.get("errmsg").toString()).policyId(i.getId()).fileUrl(companyApplicantMap.get("applicant_employee_list").toString()).build().insert();
} }
} }
}); });
return ResultUtil.success(); return ResultUtil.success();
}; };
......
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