Commit 2133484b by 杨树贤

修复原始价逻辑

parent e1f4d532
Showing with 1 additions and 2 deletions
...@@ -669,7 +669,6 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS ...@@ -669,7 +669,6 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS
customizeRateUsd := gjson.Get(currencyConfig, "customize_rate_usd").Float() customizeRateUsd := gjson.Get(currencyConfig, "customize_rate_usd").Float()
if customizeRateRmb != 0 { if customizeRateRmb != 0 {
//因为计算人民币价格的逻辑不在这里,所以记录下来,提供给计算人民币价格的逻辑
sku.CustomizeRateRMB = customizeRateRmb sku.CustomizeRateRMB = customizeRateRmb
for index, price := range sku.LadderPrice { for index, price := range sku.LadderPrice {
priceUs := price.PriceUs priceUs := price.PriceUs
...@@ -678,7 +677,7 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS ...@@ -678,7 +677,7 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS
priceCn = c.MyRound(c.DivFloat(priceCn, 1.13), 4) priceCn = c.MyRound(c.DivFloat(priceCn, 1.13), 4)
} }
sku.LadderPrice[index].PriceCn = priceCn sku.LadderPrice[index].PriceCn = priceCn
sku.OriginalPrice[index].PriceCn = priceCn //sku.OriginalPrice[index].PriceCn = priceCn
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment