diff --git a/business/jxstore/cms/store_sku.go b/business/jxstore/cms/store_sku.go index f7c4fe833..2a2462f77 100644 --- a/business/jxstore/cms/store_sku.go +++ b/business/jxstore/cms/store_sku.go @@ -2554,7 +2554,8 @@ func RefershStoreSkusMidPrice(ctx *jxcontext.Context, storeIDs []int, isCountry return err } if len(priceReferList) > 0 { - if storeSku.UnitPrice > priceReferList[0].MidUnitPrice/payPercentage*100 { + //TODO 高于中位价20%才刷, 2020-05-08 + if storeSku.UnitPrice > priceReferList[0].MidUnitPrice/payPercentage*120 { skuBindInfo := &StoreSkuBindInfo{ NameID: priceReferList[0].NameID, UnitPrice: priceReferList[0].MidUnitPrice / payPercentage * 100,