Commit 8e87da9d4836ccc2fa44f19dce2272fd5593a070
1 parent
8889f0c525
Exists in
master
and in
8 other branches
修改转诊
Showing 1 changed file with 3 additions and 2 deletions
platform-biz-patient-service/src/main/java/com/lyms/platform/biz/service/PatientsService.java
View file @
8e87da9
... | ... | @@ -106,8 +106,9 @@ |
106 | 106 | */ |
107 | 107 | public void addSieveJob() { |
108 | 108 | //查询出满足15+3 20+6的孕妇 |
109 | - Date endDate = DateUtil.addDay(new Date(), -105); | |
110 | - Date start = DateUtil.addDay(new Date(), -146); | |
109 | + | |
110 | + Date endDate = DateUtil.addDay(DateUtil.formatDate(new Date()), -105); | |
111 | + Date start = DateUtil.addDay(DateUtil.formatDate(new Date()), -146); | |
111 | 112 | PatientsQuery patientsQuery = new PatientsQuery(); |
112 | 113 | patientsQuery.setLastMensesEnd(endDate); |
113 | 114 | patientsQuery.setLastMensesStart(start); |