From 43f5f11ca8efd30a6a1e002931d778d3c27c5f87 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Tue, 13 Jan 2026 09:05:19 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9C=AA=E6=9C=89ftest=E7=9A=84?= =?UTF-8?q?=E4=B9=9F=E8=A7=A6=E5=8F=91=E5=8D=95=E4=B8=AA=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/wpm/services.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/wpm/services.py b/apps/wpm/services.py index 5f3bfd55..5a7f9615 100644 --- a/apps/wpm/services.py +++ b/apps/wpm/services.py @@ -402,7 +402,7 @@ def mlog_submit(mlog: Mlog, user: User, now: Union[datetime.datetime, None]): ana_batch_thread(xbatchs=xbatches, mgroup=mlog.mgroup) # 触发单个统计 - wprIds = list(Mlogbw.objects.filter(mlogb__mlog=mlog, ftest__isnull=False, wpr__isnull=False).values_list('wpr__id', flat=True)) + wprIds = list(Mlogbw.objects.filter(mlogb__mlog=mlog, wpr__isnull=False).values_list('wpr__id', flat=True)) if wprIds: ana_wpr_thread(wprIds, mlog.mgroup) @@ -623,7 +623,7 @@ def mlog_revert(mlog: Mlog, user: User, now: Union[datetime.datetime, None]): ana_batch_thread(xbatches, mgroup=mlog.mgroup) # 触发单个统计 - wprIds = list(Mlogbw.objects.filter(mlogb__mlog=mlog, ftest__isnull=False, wpr__isnull=False).values_list('wpr__id', flat=True)) + wprIds = list(Mlogbw.objects.filter(mlogb__mlog=mlog, wpr__isnull=False).values_list('wpr__id', flat=True)) if wprIds: ana_wpr_thread(wprIds, mlog.mgroup)