|
@@ -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
|