1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-26 15:52:20 +01:00
fab-manager/app/models/product.rb
2022-08-03 10:25:36 +02:00

19 lines
644 B
Ruby

# frozen_string_literal: true
# Product is a model for the merchandise hold information of product in store
class Product < ApplicationRecord
belongs_to :product_category
has_and_belongs_to_many :machines
has_many :product_files, as: :viewable, dependent: :destroy
accepts_nested_attributes_for :product_files, allow_destroy: true, reject_if: :all_blank
has_many :product_images, as: :viewable, dependent: :destroy
accepts_nested_attributes_for :product_images, allow_destroy: true, reject_if: :all_blank
validates_numericality_of :amount, greater_than: 0, allow_nil: true
scope :active, -> { where(is_active: true) }
end