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 = ?)