Commit 51d3587c12fd79aef68e9a19f67757e8520f962e
1 parent
ea6b572436
Exists in
master
and in
6 other branches
排除buildtype=1的数据
Showing 1 changed file with 2 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
51d3587
... | ... | @@ -813,7 +813,8 @@ |
813 | 813 | } |
814 | 814 | } |
815 | 815 | Criteria c = new Criteria(); |
816 | - c.and("hospitalId").in(hospitalIds).and("isSendCoupon").is(isSendCoupon).and("yn").ne(0).and("enable").ne("2"); | |
816 | + c.and("hospitalId").in(hospitalIds).and("isSendCoupon").is(isSendCoupon) | |
817 | + .and("yn").ne(0).and("enable").ne("2").and("buildType").ne("1"); | |
817 | 818 | if(startDate != null && endDate != null) { |
818 | 819 | c.and("bookbuildingDate").gte(startDate).lt(DateUtil.addDay(endDate, 1)); |
819 | 820 | } |