RoR3.2.11を使用して課金システムをコーディングしています。
次に、請求額の合計を計算します。そのために、私はそのようなモデルを設計しました:
class Bill < ActiveRecord::Base
belongs_to :customer
has_many :bill_items, :dependent => :destroy
has_many :articles, :through => :bill_items
attr_accessible :date, :discount, :state, :category, :customer_id, :bill_items_attributes
accepts_nested_attributes_for :bill_items, :reject_if => lambda { |a| a[:count].blank? }, :allow_destroy => true
def total
bill_items.inject(0) { |acc, bill_items| acc + (bill_items.count * bill_items.article.price) } - discount
end
end
何かがデータベースに保存されている場合、これはうまく機能します。「bill_item」が空の場合、次のメッセージが表示されます。
TypeError in Bills# edit
nil can't be coerced into Float
誰かがその問題で私を半減させることができれば、それは素晴らしいことです。