@@ -47,7 +47,7 @@ def lensman_integral_list(request): |
||
| 47 | 47 |
except LensmanInfo.DoesNotExist: |
| 48 | 48 |
return response(200, 'Lensman Not Found', u'摄影师不存在') |
| 49 | 49 |
|
| 50 |
- integrals = LensmanIntegralIncomeExpensesInfo.objects.filter(user_id=user_id, status=True) |
|
| 50 |
+ integrals = LensmanIntegralIncomeExpensesInfo.objects.filter(user_id=user_id, status=True).order_by('-pk')
|
|
| 51 | 51 |
|
| 52 | 52 |
integrals = [integral.userdata for integral in integrals] |
| 53 | 53 |
|