Commit eb6c50ffce86f45768ba3d75d48df7cbc7a7be12

Authored by jiangjiazhi
1 parent 86f5606cdb

增加是否通知

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java View file @ eb6c50f
... ... @@ -119,7 +119,7 @@
119 119 Patients patients = patientsService.findOnePatientById(list.get(0).getParentId());
120 120 String zhuanchu =list.get(0).getOutHospitalId();
121 121 Organization zhuanc =organizationService.getOrganization(Integer.valueOf(zhuanchu));
122   - String zhuanCName ,zhuanRname;
  122 + String zhuanCName=""; String zhuanRname="";
123 123 if(null!=zhuanc){
124 124 zhuanCName= zhuanc.getName();
125 125 }
... ... @@ -127,7 +127,7 @@
127 127 if(null!=zhuanc1){
128 128 zhuanRname =zhuanc1.getName();
129 129 }
130   - referralApplyOrderResult.convertToResult(list.get(0), patients);
  130 + referralApplyOrderResult.convertToResult(list.get(0), patients,zhuanCName,zhuanRname);
131 131 }
132 132 return new BaseObjectResponse().setData(referralApplyOrderResult).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功");
133 133 }