Commit d6a63fc780a6b15797356caf41a569fbf24a6c4e
1 parent
d7239f48ed
Exists in
master
and in
6 other branches
自动诊断
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
d6a63fc
| ... | ... | @@ -5898,7 +5898,7 @@ |
| 5898 | 5898 | query.addCriteria(Criteria.where("_id").is(id)); |
| 5899 | 5899 | AutoRiskRecord autoRisk = mongoTemplate.findOne(query, AutoRiskRecord.class); |
| 5900 | 5900 | if (autoRisk != null) { |
| 5901 | - if (autoRisk.getType() == 0) { | |
| 5901 | + /* if (autoRisk.getType() == 0) { | |
| 5902 | 5902 | AntExChuQuery antExChuQuery = new AntExChuQuery(); |
| 5903 | 5903 | antExChuQuery.setYn(YnEnums.YES.getId()); |
| 5904 | 5904 | antExChuQuery.setParentId(autoRisk.getPatientId()); |
| ... | ... | @@ -5965,7 +5965,7 @@ |
| 5965 | 5965 | excAddRequest.setParentId(autoRisk.getPatientId()); |
| 5966 | 5966 | addOneAntEx(excAddRequest, userId); |
| 5967 | 5967 | } |
| 5968 | - } | |
| 5968 | + }*/ | |
| 5969 | 5969 | Query updateQuery = Query.query(Criteria.where("_id").is(autoRisk.getId())); |
| 5970 | 5970 | autoRisk.setStatus(1); //设置为已确诊 |
| 5971 | 5971 | Update update = MongoConvertHelper |