Commit a1cf222356bca323b6b92f3c187646856651f21c

Authored by wtt
1 parent 27f9f26d8d

unpdate

Showing 1 changed file with 1 additions and 9 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientRegistrationFacade.java View file @ a1cf222
... ... @@ -88,15 +88,7 @@
88 88 modelQuery.setSort("ASC");
89 89 patientRegistrationModels = patientRegistrationService.queryListOne(modelQuery);
90 90 }
91   - //判断该身份证号存在信息
92   - if (CollectionUtils.isEmpty(patientRegistrationModels) && StringUtils.isNotEmpty(request.getCardno())) {
93   - PatientRegistrationModelQuery modelQuery = new PatientRegistrationModelQuery();
94   - modelQuery.setYn(YnEnums.YES.getId());
95   - modelQuery.setHospitalId(request.getHospitalId());
96   - modelQuery.setCardno(request.getCardno());
97   - modelQuery.setSort("ASC");
98   - patientRegistrationModels = patientRegistrationService.queryListOne(modelQuery);
99   - }
  91 +
100 92 BaseObjectResponse br = new BaseObjectResponse();
101 93 if(CollectionUtils.isEmpty(patientRegistrationModels)){
102 94 PatientRegistrationModel model = getPatientRegistrationModel(request);