Commit 3b82aa02593f3bf88e0162b5a089a9b443ad1bbd

Authored by liquanyu
1 parent 0a20ac310c

产检节点统计

Showing 2 changed files with 9 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AreaCountFacade.java View file @ 3b82aa0
... ... @@ -568,7 +568,11 @@
568 568 antExRecordQuery.setPage(page);
569 569 antExRecordQuery.setLimit(limit);
570 570 antExRecordQuery.setNeed("true");
571   - antExRecordQuery.setIsFirst(nodeType);
  571 + if (nodeType != null && nodeType == 1)
  572 + {
  573 + antExRecordQuery.setIsFirst(nodeType);
  574 + }
  575 +
572 576  
573 577  
574 578 if (nodeName != null)
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/CheckWeeksNumWorker.java View file @ 3b82aa0
... ... @@ -53,7 +53,10 @@
53 53 antExRecordQuery.setBirthStart(startTime);
54 54 antExRecordQuery.setBuildTimeEnd(endTime);
55 55 antExRecordQuery.setHospitalId(hospitalId);
56   - antExRecordQuery.setIsFirst(pointType);
  56 + if (pointType != null && pointType == 1)
  57 + {
  58 + antExRecordQuery.setIsFirst(pointType);
  59 + }
57 60  
58 61 if (week == 0)
59 62 {