Commit 8dadf727631561cc56683df1e09655b855646de2
1 parent
dbf71e0f80
Exists in
master
and in
1 other branch
服务同步
Showing 1 changed file with 2 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceFacade.java
View file @
8dadf72
... | ... | @@ -113,9 +113,9 @@ |
113 | 113 | */ |
114 | 114 | public BaseResponse findPatientServiceList(String pid, Integer id) { |
115 | 115 | //根据用户id获取医院ID |
116 | - String hospitalId = autoMatchFacade.getHospitalId(id); | |
116 | + // String hospitalId = autoMatchFacade.getHospitalId(id); | |
117 | 117 | PatientServiceQuery patientQuery = new PatientServiceQuery(); |
118 | - patientQuery.setHospitalId(hospitalId); | |
118 | + // patientQuery.setHospitalId(hospitalId); | |
119 | 119 | patientQuery.setParentid(pid); |
120 | 120 | patientQuery.setSort("create_date desc"); |
121 | 121 | List<PatientService> patientServices = patientServiceService.queryPatientService(patientQuery); |
... | ... | @@ -165,7 +165,6 @@ |
165 | 165 | for (Map<String, String> serInfo : serInfos) { |
166 | 166 | //先根据孕妇id和开通服务类型、开通医生进行查询,如果已经开通过则开通失败 |
167 | 167 | PatientServiceQuery patientQuery = new PatientServiceQuery(); |
168 | - patientQuery.setHospitalId(hospitalId); | |
169 | 168 | patientQuery.setParentid(ps.getParentid()); |
170 | 169 | patientQuery.setSerType(Integer.parseInt(serInfo.get("serType"))); |
171 | 170 |