Sha256: 5a85c4c7f072b8ddf2a15ca9c654d1c51c7e10e0ac3af45d6b4080a3c85128fb
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
module Bodega class OrderProduct < ActiveRecord::Base after_save :update_stock before_save :calculate_total belongs_to :order, class_name: 'Bodega::Order' belongs_to :product, polymorphic: true delegate :keep_stock?, :price, to: :product monetize :total_cents validates_numericality_of :quantity, allow_blank: true, minimum: 1 validates_presence_of :quantity validate :product_available? def identifier "#{product_type}.#{product_id}" end def name product.respond_to?(:name) ? product.name : product.to_s end def quantity_and_name "#{quantity} x #{name.pluralize(quantity)}" end def subtotal price * quantity end protected def calculate_total self.total = subtotal end def product_available? unless product.number_in_stock >= quantity quantity_error = case quantity when 1 "We're sorry, but the #{name} you requested is no longer in stock." else "We're sorry, but there are no longer #{quantity} #{name.pluralize} in stock." end quantity_message = case product.number_in_stock when 0 "They are now sold out." when 1 "There is now one in stock." else "There are now #{quantity} in stock." end errors.add(:quantity, "#{quantity_error} #{quantity_message}.") end end def update_stock if keep_stock? product.number_in_stock = product.number_in_stock - quantity product.save(validate: false) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bodega-0.3.0 | app/models/bodega/order_product.rb |