From 17871d8e03fb678836ec7bacdf981dc64453906b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Fri, 8 May 2020 11:39:28 +0800 Subject: [PATCH] =?UTF-8?q?=E9=AB=98=E4=BA=8E=E4=B8=AD=E4=BD=8D=E4=BB=B71.?= =?UTF-8?q?2=E5=80=8D=E6=89=8D=E5=88=B7=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/jxstore/cms/store_sku.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,