Commit df41d01f01048fa5ee561757526936906fe5ec53

Authored by gengxiaokai
1 parent 90541fb4dd

新增诸城妇幼更换就诊卡方法

Showing 2 changed files with 7 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/hospitalapi/zcfy/ZcfyHisService.java View file @ df41d01
... ... @@ -63,7 +63,7 @@
63 63 * @param vcCardNo
64 64 * @return
65 65 */
66   - public List<String> getDzVcCardNos(String vcCardNo)
  66 + public List<String> getZcVcCardNos(String vcCardNo)
67 67 {
68 68 List<String> vcCardNos = new ArrayList<>();
69 69 List<DzReplace> list = findAllVcCarddNo(vcCardNo);
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java View file @ df41d01
... ... @@ -3,6 +3,7 @@
3 3 import com.lyms.hospitalapi.Cdfy.CdfyHisService;
4 4 import com.lyms.hospitalapi.Nczxyy.NczxyyLisService;
5 5 import com.lyms.hospitalapi.dzfy.DzfyHisService;
  6 +import com.lyms.hospitalapi.zcfy.ZcfyHisService;
6 7 import com.lyms.hospitalapi.pojo.CheckByDate;
7 8 import com.lyms.hospitalapi.pojo.CheckItemResponse;
8 9 import com.lyms.hospitalapi.pojo.CheckResponse;
... ... @@ -64,6 +65,9 @@
64 65 private DzfyHisService dzfyHisService;
65 66  
66 67 @Autowired
  68 + private ZcfyHisService zcfyHisService;
  69 +
  70 + @Autowired
67 71 private CdfyHisService cdfyHisService;
68 72  
69 73 @Autowired
... ... @@ -472,7 +476,8 @@
472 476 //诸城
473 477 else if ("21".equals(HIS_VERSION))
474 478 {
475   - model.setVcCardNo(getZcVcardNo(vcCardNo));
  479 + //model.setVcCardNo(getZcVcardNo(vcCardNo));
  480 + model.setVcCardNos(zcfyHisService.getZcVcCardNos(vcCardNo));
476 481 }
477 482 else
478 483 {