diff --git a/business/jxutils/jxutils_cms.go b/business/jxutils/jxutils_cms.go index ef086b531..27d20d07a 100644 --- a/business/jxutils/jxutils_cms.go +++ b/business/jxutils/jxutils_cms.go @@ -163,9 +163,9 @@ func CaculateSkuPrice(unitPrice int, specQuality float32, specUnit string, skuNa } price := int(math.Round(float64(float32(unitPrice) * specQuality / 500))) if specQuality < 250 { - price = price * 120 / 100 - } else if specQuality < 500 { price = price * 110 / 100 + } else if specQuality < 500 { + price = price * 105 / 100 } if price <= 0 { price = 1