zoujiajian il y a 1 an
Parent
commit
5a2b9afe29

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

@@ -20,7 +20,7 @@ import java.util.Date;
 		" inner join goods_don g on g.id = o.goods_id and g.id in (select distinct goods_id from goods_don_category_relate where category = 1)" +
 		" inner join goods_don_sku sku on sku.id = o.sku_id" +
 		" inner join shop_config sc on sc.app_id = o.shop_id",
-		where = "o.money > 0 and uor.id is null",
+		where = "o.money > 0 and uor.id is null and o.status not in ('close','noPayment','refund')",
 		orderBy = "o.id desc")
 public class UserInvoiceChoseOrderViews {