Browse Source

4g设备不体验云存

linhaohong 4 months ago
parent
commit
9571b6cf1b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Controller/CloudStorage.py

+ 1 - 1
Controller/CloudStorage.py

@@ -241,7 +241,7 @@ class CloudStorageView(View):
                 store_qs = store_qs.filter(bucket__mold=mold)
                 store_qs = store_qs.filter(bucket__mold=mold)
 
 
             # 没体验过的设备只返回体验套餐,体验过的不返回体验套餐
             # 没体验过的设备只返回体验套餐,体验过的不返回体验套餐
-            if experience_context_qs.exists():
+            if experience_context_qs.exists() or is_4g:
                 if not is_ai:  # 返回云存套餐
                 if not is_ai:  # 返回云存套餐
                     store_qs = store_qs.filter(~Q(pay_type='10'), Q(is_ai=0))  # 筛选像素等级
                     store_qs = store_qs.filter(~Q(pay_type='10'), Q(is_ai=0))  # 筛选像素等级
                 else:  # 返回云存+AI套餐
                 else:  # 返回云存+AI套餐