From b6908eff845a86ca77a5c553acfd9f47accfe2e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Fri, 19 Sep 2025 10:04:10 +0800 Subject: [PATCH] 1 --- business/model/dao/store.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/business/model/dao/store.go b/business/model/dao/store.go index 2c5bf2e9d..17a2f4c34 100644 --- a/business/model/dao/store.go +++ b/business/model/dao/store.go @@ -3,6 +3,7 @@ package dao import ( "errors" "fmt" + "git.rosy.net.cn/jx-callback/globals" "sort" "strings" "time" @@ -1597,6 +1598,8 @@ func StatisticsStoreInfo(db *DaoDB, brandId, vendorId, storeList []int, operateN } sql += ` GROUP BY s.status ` + globals.SugarLogger.Debugf("---------sql := %s", sql) + globals.SugarLogger.Debugf("---------sql := %s", utils.Format4Output(param, false)) if err := GetRows(db, &statistics, sql, param); err != nil { return nil, err }