Commit 682bd95f by 杨树贤

特殊处理

parent caa83cd8
Showing with 8 additions and 8 deletions
...@@ -670,16 +670,16 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS ...@@ -670,16 +670,16 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS
//fmt.Println(rmbRatio, usRatio) //fmt.Println(rmbRatio, usRatio)
//人民币汇率转美金汇率 //人民币汇率转美金汇率
usRatio = c.MyRound(c.DivFloat(rmbRatio, usRatio), 10) usRatio = c.MyRound(c.DivFloat(rmbRatio, usRatio), 10)
} for index, price := range sku.LadderPrice {
sku.OriginCurrencySymbol = symbol priceUs := price.PriceUs
for index, price := range sku.LadderPrice { priceUs = c.MyRound(c.MulFloat(priceUs, usRatio), 4)
priceUs := price.PriceUs if hasTax {
priceUs = c.MyRound(c.MulFloat(priceUs, usRatio), 4) priceUs = c.MyRound(c.DivFloat(priceUs, 1.13), 4)
if hasTax { }
priceUs = c.MyRound(c.DivFloat(priceUs, 1.13), 4) sku.LadderPrice[index].PriceUs = priceUs
} }
sku.LadderPrice[index].PriceUs = priceUs
} }
sku.OriginCurrencySymbol = symbol
return sku return sku
} }
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