zjz 4 лет назад
Родитель
Сommit
678bf90061
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Controller/MealManage.py

+ 2 - 2
Controller/MealManage.py

@@ -282,12 +282,12 @@ class MealView(View):
             qs = Store_Meal.objects.filter(bucket__mold=1). \
                 values("id", "title", "content", "price", "day", "currency",
                        "bucket__storeDay", "bucket__bucket", "bucket__area",
-                       "type")
+                       "type", "symbol")
         else:
             qs = Store_Meal.objects.all(). \
                 values("id", "title", "content", "price", "day", "currency",
                        "bucket__storeDay", "bucket__bucket", "bucket__area",
-                       "type")
+                       "type", "symbol")
         if qs.exists():
             ql = list(qs)
             from operator import itemgetter