Commit 7fd8249b62916051b296e99e8ab055184bc5e892
Exists in
master
and in
8 other branches
Merge remote-tracking branch 'origin/master'
Showing 1 changed file
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/VisitFacade.java
View file @
7fd8249
... | ... | @@ -186,6 +186,10 @@ |
186 | 186 | } else { |
187 | 187 | visitService.updateVisit(visitRequest.getRequestVisit()); |
188 | 188 | } |
189 | + Patients patients = new Patients(); | |
190 | + patients.setId(parentId); | |
191 | + patients.setIsVisit(1); | |
192 | + patientsService.updatePatient(patients); | |
189 | 193 | return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); |
190 | 194 | } |
191 | 195 |