41 lines
917 B
Ruby
41 lines
917 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: orders
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer
|
|
# cost :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class Order < ActiveRecord::Base
|
|
after_initialize { self.total_price = 0 }
|
|
belongs_to :user
|
|
|
|
has_many :order_products
|
|
has_many :products, { through: :order_products} do
|
|
def << (product)
|
|
if proxy_association.owner.products.include?(product)
|
|
proxy_association.owner.order_products.find_by(product: product).increment!(:count, 1)
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|
|
|
|
attr_accessor :total_price
|
|
|
|
validates :user, presence: true
|
|
|
|
accepts_nested_attributes_for :order_products, reject_if: proc { |op| op[:count].to_i <= 0 }
|
|
|
|
def price
|
|
price = 0
|
|
products.each do |p|
|
|
price += p.price * p.count(self)
|
|
end
|
|
price
|
|
end
|
|
|
|
end
|