Browse Source

DVR/NVR设备暂不返回云存套餐列表

locky 3 năm trước cách đây
mục cha
commit
91259af70b
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      Controller/CloudStorage.py

+ 6 - 0
Controller/CloudStorage.py

@@ -189,6 +189,12 @@ class CloudStorageView(View):
         mold = request_dict.get('mold', None)
         uid = request_dict.get('uid', None)
         lang = request_dict.get('lang', 'en')
+
+        # DVR/NVR设备暂不返回云存套餐列表
+        device_info_qs = Device_Info.objects.filter(Q(uid=uid), Q(Type__lte=4) | Q(Type=10001))
+        if device_info_qs.exists():
+            return response.json(0)
+
         qs = Store_Meal.objects
         eq = ExperienceContextModel.objects.filter(uid=uid, experience_type=0).values('id')