diff --git a/backend/view.py b/backend/view.py index af6eba7..152373d 100644 --- a/backend/view.py +++ b/backend/view.py @@ -7345,7 +7345,6 @@ class SzxxView(APIView): payout_qs = filter_queryset_by_club( DailyPayoutStat.query.filter(**payout_filter), request, ).values(group_field) \ - .values(group_field) \ .annotate(total_payout=Sum('total_amount'), total_count=Sum('total_count')) \ .order_by(group_field) diff --git a/jituan/services/caiwu_stats.py b/jituan/services/caiwu_stats.py index 3fd469b..f2f69df 100644 --- a/jituan/services/caiwu_stats.py +++ b/jituan/services/caiwu_stats.py @@ -190,6 +190,5 @@ def build_caiwu_payload(request): 'total_income': round(total_income, 2), 'total_payout': round(total_payout, 2), 'platform_profit': platform_profit, - 'szjilu': szjilu_payload, 'daily_stats': daily_stats, }