gpt4 book ai didi

ruby-on-rails - rails-money gem : Money formatting with 2 cent digits, 但存储 4 美分数字

转载 作者:行者123 更新时间:2023-12-04 03:47:42 33 4
gpt4 key购买 nike

我正在使用 RubyMoney/money-rails gem,我对它非常满意。

现在我需要为 money 列添加更多精度,所以我定义了一种新货币

:subunit             => "Subcent",
:subunit_to_unit => 10000,

有没有办法使用格式助手 humanized_money_with_symbol 但只显示逗号后的 2 位数字?

例子:10,0044 欧元(小数货币:100044 货币:欧元)应显示为10,00 欧元

最佳答案

一个肮脏的小把戏是取消注册所有货币,然后像这样用新的 subunit_to_unit 重新注册它们

currencies = Money::Currency.table.dup

currencies.each do |code, currency|
Money::Currency.unregister(currency)
end

currencies.each do |code, currency|
Money::Currency.register(currency.merge({subunit_to_unit: 1000}))
end

如果您使用的是 Rails,请尝试在初始化程序中声明上述代码。

关于ruby-on-rails - rails-money gem : Money formatting with 2 cent digits, 但存储 4 美分数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16130225/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com