From 8d9794a93c14d28a87991dbed7517a9640418b9c Mon Sep 17 00:00:00 2001 From: renzhiyuan <465386466@qq.com> Date: Wed, 31 Dec 2025 18:12:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E9=94=80=E5=94=AE?= =?UTF-8?q?=E5=88=86=E6=9E=90=E9=BB=91=E5=90=8D=E5=8D=95=E8=BF=87=E6=BB=A4?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/tools/bbxt/bbxt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tools/bbxt/bbxt.go b/internal/tools/bbxt/bbxt.go index 3eea5a7..c14ed9b 100644 --- a/internal/tools/bbxt/bbxt.go +++ b/internal/tools/bbxt/bbxt.go @@ -140,7 +140,7 @@ func (b *BbxtTools) StatisOursProductLossSum(now time.Time) (report []*ReportRes ) // 构建分组 for _, v := range resellers { - if v.Total <= -100 { + if v.Total <= -100 && !slices.Contains(resellerBlackList, v.ResellerName) { total = append(total, []string{ fmt.Sprintf("%s", v.ResellerName), fmt.Sprintf("%.2f", v.Total),