This commit is contained in:
苏尹岚
2020-01-19 17:16:13 +08:00
parent f38430cf2e
commit f67999ed16

View File

@@ -552,7 +552,7 @@ func GetStorePriceScore(db *DaoDB, storeIDs, vendorIDs []int, fromScore, toScore
AND a.status = ?
AND a.deleted_at = ?
GROUP BY 1,2,3)t1
GROUP BY 1)ON t1.store_id = a.store_id
GROUP BY 1)t2 ON t2.store_id = a.store_id
WHERE 1=1
`
sqlParams = append(sqlParams, model.StoreSkuBindStatusNormal, utils.DefaultTimeValue)