我是 Rails 新手,正在开发我的第一个 Rails 项目,它是一个发票应用程序,在发票表单中包含嵌套行项目。我想在保存发票之前计算总发票。如果只是在保存过程中添加了项目,我可以很好地保存它,但是如果其中一个嵌套的行项目被标记为要删除,它就不能正确计算总数。我将不得不返回并再次保存以获得正确的总账单金额。
class Invoice < ActiveRecord::Base
attr_accessible :job_name, :items_attributes, :tax1, :tax2, :subtotal
before_save :calculate_totals
has_many :items, :dependent => :destroy
accepts_nested_attributes_for :items, allow_destroy: true
private
def calculate_totals
self.subtotal = 0
self.items.each do |i|
self.subtotal = self.subtotal + (i.quantity * i.cost_per)
end
end
end
我注意到这与 params 有何不同,但问题项目记录列在请求的参数中,其中 :_destroy = true
{"utf8"=>"✓",
"_method"=>"put",
"authenticity_token"=>"+OqRa7vRa1CKPMCdBrjhvU6jzMH1zQ=",
"invoice"=>{"client_id"=>"1",
"job_name"=>"dsdsadsad",
"items_attributes"=>{"0"=>{"name"=>"jhksadhshdkjhkjdh",
"quantity"=>"1",
"cost_per"=>"50.0",
"id"=>"21",
"_destroy"=>"false"},
"1"=>{"name"=>"delete this one",
"quantity"=>"1",
"cost_per"=>"10.0",
"id"=>"24",
"_destroy"=>"true"}}},
"commit"=>"Update Invoice",
"id"=>"8"}
谢谢你的帮助。