Commit 445b8e5c9593d4ec8a0cf792c245d1f877ee1658
1 parent
d986745e3d
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/TrackDownFacade.java
View file @
445b8e5
| ... | ... | @@ -392,7 +392,7 @@ |
| 392 | 392 | TrackDownRecordQuery downRecordQuery = new TrackDownRecordQuery(); |
| 393 | 393 | if (isPatient) {//加入了高危因数查询条件 |
| 394 | 394 | patientsQuery.setHospitalId(hospitalId); |
| 395 | - patientsQuery.setType(1); | |
| 395 | + patientsQuery.setType(3); | |
| 396 | 396 | patientsQuery.setQueryNo(downQueryRequest.getKey()); |
| 397 | 397 | System.out.println("过滤条件:" + patientsQuery.convertToQuery().convertToMongoQuery()); |
| 398 | 398 | List<Patients> patientses = patientsService.queryPatient(patientsQuery); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/TrackDownServiceImpl.java
View file @
445b8e5
| ... | ... | @@ -834,7 +834,7 @@ |
| 834 | 834 | */ |
| 835 | 835 | public BaseResponse add(Integer userId, TrackDown trackDown) { |
| 836 | 836 | String hospitalId = autoMatchFacade.getHospitalId(userId); |
| 837 | - if (trackDown.getTrackDownDateType() != TrackDownDateEnums.D.getId() && trackDown.getTrackDownDateType() != TrackDownDateEnums.G.getId()) {//不等于产检追访和产后访视时进行数据验证状态 | |
| 837 | + if (trackDown.getTrackDownDateType() != TrackDownDateEnums.D.getId()) {//不等于产检追访和产后访视时进行数据验证状态 | |
| 838 | 838 | //追访列表ID |
| 839 | 839 | if (trackDown.getTrackDownRecId() != null) { |
| 840 | 840 | TrackDownRecord trackDownRecord = trackDownRecordService.getTrackDown(trackDown.getTrackDownRecId()); |