소스 검색

待发车数不展示代充类型商品

zoujiajian 1 년 전
부모
커밋
12892e6b21
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      netflix-dao/src/main/java/com/cyksj/model/views/GroupsTripsWaitingView.java

+ 1 - 1
netflix-dao/src/main/java/com/cyksj/model/views/GroupsTripsWaitingView.java

@@ -9,7 +9,7 @@ import lombok.Setter;
 @Setter
 @SearchBean(tables = "groups_trips gt left join goods_don_sku sku on gt.sku_id = sku.id " +
         "left join goods_don g on g.id = sku.goods_id",
-        where = "gt.status = 'waiting' and g.type = 1 and g.second_type = 2 and (g.special_type is null or g.special_type != 'courseware')",
+        where = "gt.status = 'waiting' and g.type = 1 and g.second_type = 2 and (g.special_type is null or g.special_type not in ('courseware','recharge'))",
         groupBy = "g.title")
 public class GroupsTripsWaitingView {
     @DbField("g.title")