Commit a6606186b7ed16135b5be52c73412a3ad4ef99d4

Authored by litao@lymsh.com
1 parent 51d3587c12

排除buildtype=1的数据

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java View file @ a660618
... ... @@ -814,7 +814,7 @@
814 814 }
815 815 Criteria c = new Criteria();
816 816 c.and("hospitalId").in(hospitalIds).and("isSendCoupon").is(isSendCoupon)
817   - .and("yn").ne(0).and("enable").ne("2").and("buildType").ne("1");
  817 + .and("yn").ne(0).and("enable").ne("2").and("buildType").ne(1);
818 818 if(startDate != null && endDate != null) {
819 819 c.and("bookbuildingDate").gte(startDate).lt(DateUtil.addDay(endDate, 1));
820 820 }