Commit 33667ab80fe06a78aeb39a7d4a8bbdfe59ca0d2e

Authored by yangfei
1 parent 23877f5225

服务同步

Showing 2 changed files with 3 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatdeliverFollowFacade.java View file @ 33667ab
... ... @@ -81,6 +81,7 @@
81 81 map.put("time", maternalDeliverModel.getDueDate());
82 82 map.put("title", "分娩记录");
83 83 map.put("id", id);
  84 + map.put("hospitalId", maternalDeliverModel.getHospitalId());
84 85 //分娩记录类型
85 86 map.put("type", "1");
86 87 resutList.add(map);
... ... @@ -94,6 +95,7 @@
94 95 map.put("time", DateUtil.getyyyy_MM_dd(md.getVisitCreateDate()==null?md.getUpdateDate():md.getVisitCreateDate()));
95 96 map.put("title", "访视记录");
96 97 map.put("id", md.getId());
  98 + map.put("hospitalId", md.getHospitalId());
97 99 //访视记录类型
98 100 map.put("type", "2");
99 101 resutList.add(map);
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceFacade.java View file @ 33667ab
... ... @@ -693,7 +693,7 @@
693 693  
694 694 List<HospitalDoctService> hospitalDoctServices=hospitalDoctServiceService.queryHospitalDoctService(hospitalDoctServiceQuery);
695 695 //判断是否有数据
696   - if(CollectionUtils.isNotEmpty(hospitalServiceContents)) {
  696 + if(CollectionUtils.isNotEmpty(hospitalDoctServices)) {
697 697 for(HospitalDoctService hospitalServiceContent:hospitalDoctServices){
698 698 hospitalDoctService.add(convert(hospitalServiceContent));
699 699 }