Explorar el Código

套餐语言列表错误

chenshibin hace 4 años
padre
commit
a3f121b92c
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      Controller/MealManage.py

+ 2 - 1
Controller/MealManage.py

@@ -153,7 +153,8 @@ class MealManage(View):
             for key, val in enumerate(items_list):
                 pay_types = Pay_Type.objects.filter(store_meal=items_list[key]['id']).values("id", "payment")
                 items_list[key]['pay_type'] = list(pay_types)
-        res['count'] = len(ql)
+
+        res['count'] =Store_Meal.objects.filter(lang__lang=lang).count()
         res['data'] = items_list
         return response.json(0, res)