From 820c1c3043790c22daea1a1b81dbec15315e3f42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Wed, 6 Jan 2021 16:12:04 +0800 Subject: [PATCH] aa --- business/jxstore/report/report.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/business/jxstore/report/report.go b/business/jxstore/report/report.go index d6c3e6c0b..344ecfa04 100644 --- a/business/jxstore/report/report.go +++ b/business/jxstore/report/report.go @@ -321,8 +321,6 @@ func getStoreStatusCount(db *dao.DaoDB, cityCodes []int, vendorID, status int) ( sql += " AND a.status = ?" sqlParams = append(sqlParams, status) } - fmt.Println(sql) - fmt.Println(sqlParams) err = dao.GetRow(db, &countType, sql, sqlParams) return countType.Count, err } @@ -355,8 +353,6 @@ func getOrderStateCount(db *dao.DaoDB, cityCodes []int, vendorID, status int) (g sql += " AND b.status < ? AND b.status >= ?" sqlParams = append(sqlParams, model.OrderStatusEndBegin, model.OrderStatusWait4Pay) } - fmt.Println(sql) - fmt.Println(sqlParams) err = dao.GetRow(db, &getManageStateOrderInfo, sql, sqlParams) getManageStateOrderInfo.Yhld = utils.Float64ToStr((float64(getManageStateOrderInfo.ActualPayPrice-getManageStateOrderInfo.TotalShopMoney-getManageStateOrderInfo.DesiredFee) / float64(getManageStateOrderInfo.ActualPayPrice) * 100)) + "%" return getManageStateOrderInfo, err