From 835d6afe507ad8259c2ed4d81485e3977b5130f2 Mon Sep 17 00:00:00 2001 From: liquanyu Date: Fri, 31 Aug 2018 16:37:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A9=E4=BA=A7=E6=9C=BA=E6=9E=84=E6=8A=A5?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/worker/DueOrgCountWorker.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java index 58f03d1..24d5e8f 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java @@ -362,10 +362,7 @@ public class DueOrgCountWorker implements Callable>> { } babyModelQuery6.setBabyWeightStart("0"); babyModelQuery6.setBabyWeightEnd("2.6"); - if ("216".equals(hospialId)) - { - System.out.println("hospital id query " + babyModelQuery6.convertToQuery().convertToMongoQuery().toString()); - } + int lowWeightCount = babyService.queryBabyCount(babyModelQuery6); //低出生体重数 map.put("lowWeightCount", String.valueOf(lowWeightCount)); @@ -381,7 +378,7 @@ public class DueOrgCountWorker implements Callable>> { } patientsQuery1.setFmHospital(hospialId); patientsQuery1.setFmWeekStart(0); - patientsQuery1.setFmWeekEnd(36); + patientsQuery1.setFmWeekEnd(36*7); List patientses = patientsService.queryPatient(patientsQuery1); if (CollectionUtils.isNotEmpty(patientses)) { -- 1.8.3.1