Commit 5ace7518de426af7c37270e0c07cd7d8e73dfcc2

Authored by jiangjiazhi
1 parent 478d4d5c3b

增加是否通知

Showing 1 changed file with 2 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java View file @ 5ace751
... ... @@ -71,7 +71,8 @@
71 71  
72 72 if(CollectionUtils.isNotEmpty(sieveModels)){
73 73 SieveModel sieveModel= sieveModels.get(0);
74   - sieveDetailResult.convert();
  74 + Patients patients= patientsService.findOnePatientById(sieveModel.getParentId());
  75 + sieveDetailResult.convert(sieveModel,patients);
75 76  
76 77 }
77 78 return new BaseObjectResponse().setData(sieveDetailResult).setErrormsg("成功").setErrorcode(ErrorCodeConstants.SUCCESS);