Commit 2affc775d9d63d7d98ea1071e28ab5628dc02df5
1 parent
aa8811ab2c
Exists in
master
and in
6 other branches
修改电子病历
Showing 1 changed file with 6 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
2affc77
... | ... | @@ -980,8 +980,13 @@ |
980 | 980 | List l = buildPatientList(new Date(), patientsList, list1, min, false); |
981 | 981 | if (!l.isEmpty()) { |
982 | 982 | sort(l); |
983 | + | |
984 | + List list2 = new ArrayList(); | |
985 | + list2.add(l); | |
986 | + list2.addAll(sortList); | |
987 | + sortList=list2; | |
983 | 988 | updateEditEnable(l, sortList); |
984 | - sortList.add(l); | |
989 | + l = new ArrayList(); | |
985 | 990 | } |
986 | 991 | } |
987 | 992 |