Commit 163f0ce29bcb08a70f1dabcb5dec1a373b5c1c48
1 parent
9069fc5997
Exists in
master
and in
1 other branch
修改新电子病历
Showing 1 changed file with 3 additions and 3 deletions
platform-biz-patient-service/src/main/java/com/lyms/platform/biz/service/SieveService.java
View file @
163f0ce
... | ... | @@ -71,9 +71,9 @@ |
71 | 71 | |
72 | 72 | public void deleteSieve(String parentId, String hospitalId,Date lastMenses) { |
73 | 73 | |
74 | - int days = DateUtil.daysBetween(lastMenses, new Date()); | |
74 | +// int days = DateUtil.daysBetween(lastMenses, new Date()); | |
75 | 75 | //判断是否在区间 |
76 | - if (days >= 108 && days <= 146) { | |
76 | +// if (days >= 108 && days <= 146) { | |
77 | 77 | SieveApplyOrderQuery sieveApplyOrderQuery = new SieveApplyOrderQuery(); |
78 | 78 | sieveApplyOrderQuery.setParentId(parentId); |
79 | 79 | sieveApplyOrderQuery.setYn(YnEnums.YES.getId()); |
... | ... | @@ -87,7 +87,7 @@ |
87 | 87 | sieveQuery.setHospitalId(hospitalId); |
88 | 88 | deleteById(sieveQuery); |
89 | 89 | } |
90 | - } | |
90 | +// } | |
91 | 91 | } |
92 | 92 | } |