瀏覽代碼

查询4G+云存套餐列表

linhaohong 1 年之前
父節點
當前提交
4f1770a637
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      AdminController/CloudServiceManage/AgentCustomerController.py

+ 2 - 2
AdminController/CloudServiceManage/AgentCustomerController.py

@@ -113,8 +113,8 @@ class AgentCustomerView(View):
         @return:
         """
         try:
-            # 云存储套餐查询,只包括is_show=1的记录
-            store_meals = Store_Meal.objects.filter(is_show=1).values('id', 'bucket__bucket').distinct()
+            # 云存储套餐查询,只包括is_show=0的记录
+            store_meals = Store_Meal.objects.filter(is_show=0).values('id', 'bucket__bucket').distinct()
 
             # 联通套餐查询,只包括is_show=1且未被删除的记录
             unicom_combos = UnicomCombo.objects.filter(is_show=1, is_del=False).values('id', 'combo_name').distinct()