在我的应用程序中,我有tax_1_amount,tax_2_amount,tax_3_amount,invoice_amount和total_invoice_amount等字段。计算总发票金额后,应按字总金额自动更新amount_in_words字段。总金额计算如下:
@total_tax_amount = @invoice.tax_1_amount + @invoice.tax_2_amount + @invoice.tax_3_amount
@total_amount = @total_tax_amount + @invoice.invoice_amount
任何人都可以告诉我是否有任何发电机或任何宝石。或者我应该为此写什么代码。
答案 0 :(得分:0)
我不确定我是否理解但请查看此链接
http://api.rubyonrails.org/classes/ActionView/Helpers/NumberHelper.html#method-i-number_to_human
或
答案 1 :(得分:0)
你需要
include ActionView::Helpers::NumberHelper
如果尝试使用除视图以外的任何地方。