Commit be566287333de4a1793590dabf815096fe37137e

Authored by hanshaofeng
1 parent e0098d3314

qhdfy send msg in home

Showing 1 changed file with 6 additions and 5 deletions

platform-biz-patient-service/src/main/java/com/lyms/platform/biz/service/MongoSyncService.java View file @ be56628
... ... @@ -66,11 +66,12 @@
66 66 String result = HttpRequest.sendPost(CENTER_BASE_URL+"saveCreatedSMS", LymsEncodeUtil.aesDecrypt(json, mongo_crypto_key), CENTER_TOKEN);
67 67 if (com.lyms.platform.common.utils.StringUtils.isNotEmpty(result))
68 68 {
69   - Map<String,String> map = JsonUtil.str2Obj(result, Map.class);
70   - if ("0".equals(map.get("errorcode")))
71   - {
72   - return true;
73   - }
  69 + return true;
  70 +// Map<String,String> map = JsonUtil.str2Obj(result, Map.class);
  71 +// if ("0".equals(map.get("errorcode")))
  72 +// {
  73 +// return true;
  74 +// }
74 75 }
75 76 return false;
76 77 }