From 438c763510e7eed8f79e25b760ea3def2127cb5c 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, 19 Aug 2020 16:46:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=A8=E8=B7=8C=E6=A0=87=E5=BF=97=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/model/dao/act.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/model/dao/act.go b/business/model/dao/act.go index df9d2ff64..42c8d770a 100644 --- a/business/model/dao/act.go +++ b/business/model/dao/act.go @@ -375,7 +375,7 @@ func GetEffectiveActStoreSkuInfo(db *DaoDB, actID int, vendorIDs []int, actType SELECT t1.type, t2.*, - t3.actual_act_price, t3.sync_status, t3.vendor_price, t3.vendor_id + t3.actual_act_price, t3.sync_status, t3.vendor_price, t3.vendor_id, t3.trend_type, t3.trend_price, FROM act t1 JOIN act_store_sku t2 ON t2.act_id = t1.id AND t2.deleted_at = ? JOIN act_store_sku_map t3 ON t3.bind_id = t2.id AND t3.act_id = t1.id AND (t3.sync_status & ? = 0 OR t1.type = ?)