From 9dbde23fade5f18f834c77f6d1ad70cc07a592de Mon Sep 17 00:00:00 2001 From: wangbo <184677810@qq.com> Date: Sat, 11 May 2019 14:30:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B9=B4=E6=8A=A5bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/facade/annualReportFacade.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/annualReportFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/annualReportFacade.java index 06c89be..32a9390 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/annualReportFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/annualReportFacade.java @@ -609,7 +609,7 @@ public class annualReportFacade { sieveGwQuery.setHospitalIds(entry.getValue()); sieveGwQuery.setStatuses(sieveList); sieveGwQuery.setZtfx(2); - int sieveGw = sieveService.queryListCount(sieveQuery); + int sieveGw = sieveService.queryListCount(sieveGwQuery); map.put("sieveGw", String.valueOf(sieveGw)); map.put("SieveGwPervent", this.division(sieveGw, sieveCount)); @@ -622,7 +622,7 @@ public class annualReportFacade { } diacrisisQuery.setHospitalIds(entry.getValue()); diacrisisQuery.setStatus(4); - int diacrisisCount = sieveService.queryListCount(sieveQuery); + int diacrisisCount = sieveService.queryListCount(diacrisisQuery); map.put("diacrisisCount", String.valueOf(diacrisisCount)); map.put("diacrisisPervent", this.division(diacrisisCount, antexMap.size())); @@ -826,7 +826,7 @@ public class annualReportFacade { } patientsQuery1.setFmHospitalList(entry.getValue()); patientsQuery1.setFmWeekStart(0); - patientsQuery1.setFmWeekEnd(36 * 7); + patientsQuery1.setFmWeekEnd(37 * 7); List patientses = patientsService.queryPatient(patientsQuery1); if (com.lyms.platform.operate.web.utils.CollectionUtils.isNotEmpty(patientses)) { List ids = new ArrayList<>(); -- 1.8.3.1