From 672b7d07c8f28e49eed9881a838516da35ba1319 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Mon, 8 Jul 2024 11:34:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/bigData/svc/svc_data.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bigData/svc/svc_data.go b/app/bigData/svc/svc_data.go index 995505c..91a5103 100644 --- a/app/bigData/svc/svc_data.go +++ b/app/bigData/svc/svc_data.go @@ -489,7 +489,7 @@ func NewSortingData(c *gin.Context) []map[string]string { } oIds = append(oIds, utils.Int64ToStr(v.Oid)) } - sql := `SELECT SUM(num) as num,SUM(success_num) as success_num,goods_title,sku FROM order_goods WHERE %s oid in (%s) and make_date=%s and goods_type=0 GROUP BY enterprise_id,goods_id,sku_id` + sql := `SELECT SUM(num) as num,SUM(success_num) as success_num,goods_title,sku FROM order_goods WHERE %s oid in (%s) and make_date=%s and goods_type=0 GROUP BY enterprise_id,goods_id,sku_id ORDER BY id asc` str := "" if args["name"] != "" { str = " goods_title like %" + args["name"] + "% and "