From e30e5a7310588ff2097f41d50e9c76cf276ae6a7 Mon Sep 17 00:00:00 2001 From: suyl <770236076@qq.com> Date: Wed, 18 Aug 2021 15:11:54 +0800 Subject: [PATCH] aa --- business/jxstore/cms/store_sku.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/business/jxstore/cms/store_sku.go b/business/jxstore/cms/store_sku.go index 681ea9859..ddf0e4599 100644 --- a/business/jxstore/cms/store_sku.go +++ b/business/jxstore/cms/store_sku.go @@ -518,7 +518,7 @@ func getGetStoresSkusBaseSQL(db *dao.DaoDB, storeIDs, skuIDs []int, upcs []strin sql += ` GROUP BY 1, 2 UNION - SELECT a.store_id, a.sku_id, a.act_price*100 actual_act_price, 0 earning_price + SELECT a.store_id, a.sku_id, 0 actual_act_price, 0 earning_price FROM act_mtwm_vendor a WHERE 1 = 1 ` @@ -535,7 +535,7 @@ func getGetStoresSkusBaseSQL(db *dao.DaoDB, storeIDs, skuIDs []int, upcs []strin } sql += ` GROUP BY 1, 2, 3 UNION - SELECT a.store_id, a.sku_id, a.act_price*100 actual_act_price, 0 earning_price + SELECT a.store_id, a.sku_id, 0 actual_act_price, 0 earning_price FROM act_ebai_vendor_sku a WHERE 1 = 1 `