2014-12-04 19:50:02 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: products
|
|
|
|
#
|
2014-12-04 20:32:31 +01:00
|
|
|
# id :integer not null, primary key
|
2015-02-09 17:06:24 +01:00
|
|
|
# name :string(255) not null
|
|
|
|
# price_cents :integer default(0), not null
|
|
|
|
# category :integer default(0)
|
|
|
|
# stock :integer default(0), not null
|
2014-12-04 20:32:31 +01:00
|
|
|
# avatar_file_name :string(255)
|
|
|
|
# avatar_content_type :string(255)
|
|
|
|
# avatar_file_size :integer
|
|
|
|
# avatar_updated_at :datetime
|
2015-02-09 17:06:24 +01:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2014-12-04 19:50:02 +01:00
|
|
|
#
|
|
|
|
|
2014-11-24 21:45:32 +01:00
|
|
|
class Product < ActiveRecord::Base
|
2015-02-09 17:06:24 +01:00
|
|
|
has_many :order_items
|
2015-03-12 13:25:11 +01:00
|
|
|
has_attached_file :avatar, styles: { dagschotel: "80x80>", medium: "100x100>" }, default_style: :medium
|
2014-12-04 19:50:02 +01:00
|
|
|
|
2014-12-10 21:25:21 +01:00
|
|
|
enum category: %w(food beverages other)
|
|
|
|
|
2014-12-04 19:50:02 +01:00
|
|
|
validates :name, presence: true
|
2015-02-04 17:05:02 +01:00
|
|
|
validates :price_cents, numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
2015-01-15 00:39:34 +01:00
|
|
|
validates :stock, numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
2015-03-12 13:25:11 +01:00
|
|
|
validates_attachment :avatar,
|
|
|
|
presence: true,
|
|
|
|
content_type: { content_type: ["image/jpeg", "image/gif", "image/png"] }
|
2014-12-09 14:39:27 +01:00
|
|
|
|
|
|
|
def price
|
2015-02-09 17:06:24 +01:00
|
|
|
self.price_cents / 100.0
|
2014-12-09 14:39:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def price=(value)
|
|
|
|
if value.is_a? String then value.sub!(',', '.') end
|
2015-02-04 17:05:02 +01:00
|
|
|
self.price_cents = (value.to_f * 100).to_int
|
2014-12-09 14:39:27 +01:00
|
|
|
end
|
2014-11-24 21:45:32 +01:00
|
|
|
end
|