chenjunkai 6 년 전
부모
커밋
062cb94211
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Controller/OrderContrller.py

+ 1 - 1
Controller/OrderContrller.py

@@ -72,6 +72,6 @@ class OrderView(View):
         count = omqs.count()
         order_ql = omqs[(page - 1) * line:page * line].values("orderID", "UID", "channel", "desc", "price", "addTime",
                                                               "updTime", "paypal", "rank__day", "rank__price",
-                                                              "rank__content", "rank__title")
+                                                              "rank__content", "rank__title","rank__currency")
         data = list(order_ql)
         return response.json(0, {'data': data, 'count': count})