From 467bb71736265c4a6acdc8dd1fdd031aed89d0f2 Mon Sep 17 00:00:00 2001 From: XingQue Date: Wed, 24 Jun 2026 06:44:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20SzxxView=20?= =?UTF-8?q?=E9=87=8D=E5=A4=8D=20values=20=E5=AF=BC=E8=87=B4=20500=EF=BC=8C?= =?UTF-8?q?=E8=B4=A2=E5=8A=A1=E7=B4=AF=E8=AE=A1=E7=BB=9F=E8=AE=A1=E5=8E=BB?= =?UTF-8?q?=E9=87=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/view.py | 1 - jituan/services/caiwu_stats.py | 1 - 2 files changed, 2 deletions(-) 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, }