Commit 6475ae3e by 杨树贤

Merge branch 'ysx-特殊币种人民币是否含税-20230828' into dev

parents 2133e8b7 682bd95f
Showing with 8 additions and 8 deletions
...@@ -672,16 +672,16 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS ...@@ -672,16 +672,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