Commit 07ceae1264d146aab5a0cbd1578124efd90f85f8
1 parent
b40b652bd9
Exists in
master
and in
6 other branches
高危统计管理BUG。(重复and问题)
Showing 1 changed file with 1 additions and 1 deletions
platform-dal/src/main/java/com/lyms/platform/query/PatientsQuery.java
View file @
07ceae1
... | ... | @@ -1007,7 +1007,7 @@ |
1007 | 1007 | c1 = c1.andOperator(c.andCondition(MongoCondition.newInstance("lastCheckEmployeeId", null, MongoOper.NE)).getCriteria()); |
1008 | 1008 | } else { |
1009 | 1009 | c1 = Criteria.where("lastCheckEmployeeId").ne(null);//下面这样写会导致重复and |
1010 | - c1 = c.andCondition(MongoCondition.newInstance("lastCheckEmployeeId", null, MongoOper.NE)).getCriteria(); | |
1010 | +// c1 = c.andCondition(MongoCondition.newInstance("lastCheckEmployeeId", null, MongoOper.NE)).getCriteria(); | |
1011 | 1011 | } |
1012 | 1012 | } |
1013 | 1013 |