|
|
@@ -50,8 +50,11 @@ public class MedInsSignService {
|
|
|
signIn.put("ip", IP_ADDR);
|
|
|
header.getJSONObject("input").put("signIn", signIn);
|
|
|
RestTemplate template = new RestTemplate();
|
|
|
+
|
|
|
+ log.info("医保签到地址:{}", siApiUrl);
|
|
|
+ log.info("医保签到参数:{}", header);
|
|
|
JSONObject result = template.postForObject(siApiUrl, header, JSONObject.class);
|
|
|
- log.info("医保签到:{}", result);
|
|
|
+ log.info("医保签到结果:{}", result);
|
|
|
if (null != result && result.getIntValue(RESULT_CODE) == 0) {
|
|
|
JSONObject output = result.getJSONObject(OUTPUT);
|
|
|
signNo = output.getString("sign_no");
|
|
|
@@ -99,8 +102,8 @@ public class MedInsSignService {
|
|
|
header.put("msgid", SiMsgIdUtil.makeMsgId());
|
|
|
header.put("mdtrtarea_admvs", "430105");
|
|
|
header.put("insuplc_admdvs", "");
|
|
|
- // TODO: 2021-05-28 替换下方值
|
|
|
- header.put("recer_sys_code", "接收方系统代码,用于多套系统接入,区分不同系统使用");
|
|
|
+ // TODO: 2021-05-28 替换下方值(接收方系统代码,用于多套系统接入,区分不同系统使用)
|
|
|
+ header.put("recer_sys_code", "430105");
|
|
|
header.put("dev_no", "");
|
|
|
header.put("dev_safe_info", "");
|
|
|
header.put("cainfo", "");
|