blob: b9ca82803451badf9a3ffef658e2a9ba61ba5672 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# frozen_string_literal: true
# Product
# public_id:string
# name:string
# unitary_price:float
# bulk_price:float
# picture:attachment
# available_quantity:integer
# categories:text
class Product < ApplicationRecord
belongs_to :company
has_many :product_reviews
validates :name, presence: true
validates :unitary_price, presence: true
validates :unitary_price, comparison: { greater_than: 0 }
validates :bulk_price, presence: true
validates :bulk_price, comparison: { greater_than: 0 }
validates :available_quantity, presence: true
validates :available_quantity, comparison: { greater_than: 0 }
has_one_attached :picture
serialize :categories, Array
def to_param
public_id
end
end
|