tap/app/models/order_item.rb

37 lines
766 B
Ruby
Raw Normal View History

# == Schema Information
#
2015-02-09 17:06:24 +01:00
# Table name: order_items
#
# id :integer not null, primary key
# order_id :integer
2015-02-09 17:06:24 +01:00
# product_id :integer not null
# count :integer default("0")
#
2015-02-09 17:06:24 +01:00
class OrderItem < ActiveRecord::Base
belongs_to :order
belongs_to :product
2014-12-04 17:02:08 +01:00
validates :product, presence: true
2015-09-04 16:47:49 +02:00
validates :count, presence: true, numericality: { only_integer: true, greater_than: 0 }
2015-02-09 17:06:24 +01:00
2015-06-30 22:30:34 +02:00
after_create :remove_from_stock
2014-12-04 17:02:08 +01:00
accepts_nested_attributes_for :product
2015-02-04 16:49:19 +01:00
def product_attributes=(attributes)
self.product = Product.find(attributes[:id])
super
end
def cancel
self.product.increment!(:stock, self.count)
end
private
def remove_from_stock
product.decrement!(:stock, count)
end
end