Commit 6475ae3e by 杨树贤

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

parents 2133e8b7 682bd95f
Showing with 2 additions and 2 deletions
......@@ -672,8 +672,6 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS
//fmt.Println(rmbRatio, usRatio)
//人民币汇率转美金汇率
usRatio = c.MyRound(c.DivFloat(rmbRatio, usRatio), 10)
}
sku.OriginCurrencySymbol = symbol
for index, price := range sku.LadderPrice {
priceUs := price.PriceUs
priceUs = c.MyRound(c.MulFloat(priceUs, usRatio), 4)
......@@ -682,6 +680,8 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku) model.LyS
}
sku.LadderPrice[index].PriceUs = priceUs
}
}
sku.OriginCurrencySymbol = symbol
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