单词金额应在总金额后自动计算

时间:2012-08-09 05:09:25

标签: ruby-on-rails ruby

在我的应用程序中,我有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

任何人都可以告诉我是否有任何发电机或任何宝石。或者我应该为此写什么代码。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

你需要

include ActionView::Helpers::NumberHelper

如果尝试使用除视图以外的任何地方。