Commit 63cc1d557969daf70933b09078de6fdae5c1e38d
1 parent
345ac8fc3b
Exists in
master
and in
6 other branches
小程序lis报告修改
Showing 2 changed files with 10 additions and 5 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/HttpClientUtil.java
View file @
63cc1d5
| ... | ... | @@ -228,10 +228,10 @@ |
| 228 | 228 | Map<String,String> map = new HashMap<String, String>(); |
| 229 | 229 | map.put("page","1"); |
| 230 | 230 | map.put("limit","10"); |
| 231 | - map.put("patientId","5959c0a9d5402ad93418edc9"); | |
| 231 | + map.put("patientIds", "5ab064e9e4b087666f0621d7"); | |
| 232 | 232 | long start = System.currentTimeMillis(); |
| 233 | - String s = doGet("https://push.stage.platform.healthbaby.com.cn/biz-push-web/push", map, "utf-8","3d19960bf3e81e7d816c4f26051c49ba"); | |
| 234 | - | |
| 233 | + String s = doGet("https://area-weihai-api.healthbaby.com.cn:12356/getAppLis", map, "utf-8", "3d19960bf3e81e7d816c4f26051c49ba"); | |
| 234 | + System.out.println(s); | |
| 235 | 235 | long end = System.currentTimeMillis(); |
| 236 | 236 | System.out.print(end -start); |
| 237 | 237 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java
View file @
63cc1d5
| ... | ... | @@ -551,8 +551,13 @@ |
| 551 | 551 | //承德查询lis |
| 552 | 552 | else if ("16".equals(HIS_VERSION)) |
| 553 | 553 | { |
| 554 | - vcCardNos.add(pat.getVcCardNo()); | |
| 555 | -// vcCardNos.add(cdfyHisService.getPatientIdByVcCardNo(pat.getVcCardNo())); | |
| 554 | +// vcCardNos.add(pat.getVcCardNo()); | |
| 555 | + vcCardNos.add(cdfyHisService.getIdByVcCardNo(pat.getVcCardNo())); | |
| 556 | + } | |
| 557 | + //威海市妇幼 因为威海市妇幼有些孕妇没有就诊卡直接用身份证,lis把身份证号码存在就诊卡号字段的 | |
| 558 | + else if ("22".equals(HIS_VERSION)) | |
| 559 | + { | |
| 560 | + vcCardNos.add(pat.getCardNo()); | |
| 556 | 561 | } |
| 557 | 562 | else |
| 558 | 563 | { |