48 lines
1.6 KiB
Ruby
48 lines
1.6 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: products
|
|
#
|
|
# id :integer not null, primary key
|
|
# name :string not null
|
|
# price_cents :integer default("0"), not null
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
# avatar_file_name :string
|
|
# avatar_content_type :string
|
|
# avatar_file_size :integer
|
|
# avatar_updated_at :datetime
|
|
# category :integer default("0")
|
|
# stock :integer default("0"), not null
|
|
# calories :integer
|
|
# deleted :boolean default("f")
|
|
#
|
|
|
|
class Product < ActiveRecord::Base
|
|
has_many :order_items
|
|
has_attached_file :avatar, styles: { dagschotel: "80x80>", medium: "100x100>", small: "40x40>" }, default_style: :medium
|
|
|
|
enum category: %w(food beverages other)
|
|
|
|
validates :name, presence: true
|
|
validates :price_cents, numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
validates :stock, presence: true, numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
validates :calories, numericality: { only_integer: true, allow_nil: true, greater_than_or_equal_to: 0 }
|
|
validates_attachment :avatar,
|
|
presence: true,
|
|
content_type: { content_type: ["image/jpeg", "image/gif", "image/png"] }
|
|
|
|
scope :for_sale, -> { where deleted: false }
|
|
|
|
def price
|
|
self.price_cents / 100.0
|
|
end
|
|
|
|
def price=(value)
|
|
if value.is_a? String then value.sub!(',', '.') end
|
|
self.price_cents = (value.to_f * 100).to_int
|
|
end
|
|
|
|
def take_out_of_sale!
|
|
update_attribute :deleted, true
|
|
end
|
|
end
|