From b3dd78d37c70be98af66fc634e9a2f4272557e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Sat, 10 Oct 2020 17:14:42 +0800 Subject: [PATCH] excel --- business/jxstore/tempop/tempop.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/business/jxstore/tempop/tempop.go b/business/jxstore/tempop/tempop.go index 37aaeee08..bbbbe9b06 100644 --- a/business/jxstore/tempop/tempop.go +++ b/business/jxstore/tempop/tempop.go @@ -1653,9 +1653,11 @@ func UploadJdsImage(ctx *jxcontext.Context) (err error) { AND a.order_created_at > ? GROUP BY 2 ORDER BY 1 DESC + LIMIT 1 ` sqlParams := []interface{}{time.Now().AddDate(0, -1, 0)} dao.GetRow(db, &tmpCount, sql, sqlParams) + fmt.Println(utils.Format4Output(tmpCount, false)) jdMaps2[jdStoreID] = append(jdMaps2[jdStoreID], tmpCount.ID) } }