Commit 32b894e263b38ad65420e71eca428152d0374b39
1 parent
927dce611d
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java
View file @
32b894e
... | ... | @@ -520,7 +520,7 @@ |
520 | 520 | if (riskPatientsQueryRequest.getFmWeekEnd() != null) |
521 | 521 | { |
522 | 522 | int end = org.apache.commons.lang.math.NumberUtils.toInt(riskPatientsQueryRequest.getFmWeekEnd(), 0)+1; |
523 | - end = end * 7; | |
523 | + end = end * 7 - 1; | |
524 | 524 | patientsQuery.setFmWeekEnd(end); |
525 | 525 | } |
526 | 526 |