Commit 3279175d8373d6cdfb5d13c889a9007107acc31f

Authored by cfl
1 parent c8142a3b24
Exists in master and in 2 other branches dev, luanping

解决bug660,丰宁需求

Showing 1 changed file with 6 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/query/PatientsQuery.java View file @ 3279175
... ... @@ -806,6 +806,12 @@
806 806 if (CollectionUtils.isNotEmpty(bookbuildingDoctorList)) {
807 807 condition = condition.and("bookbuildingDoctor", bookbuildingDoctorList, MongoOper.IN);
808 808 }
  809 +
  810 + //丰宁随访医生查询条件 cfl 20231017
  811 + if (StringUtils.isNotEmpty(booksuifangDoctor)) {
  812 + condition = condition.and("booksuifangDoctor", booksuifangDoctor, MongoOper.IS);
  813 + }
  814 +
809 815 if (visitstatus != -1) {
810 816 condition = condition.and("isVisit", visitstatus, MongoOper.IS);
811 817 }