Sha256: d488f8077bc15426e7c655e8f3d142414e2b50362c861e6bad3e04f44677bd74
Contents?: true
Size: 434 Bytes
Versions: 65
Compression:
Stored size: 434 Bytes
Contents
module Comee module Core class ReorderReportItem < ApplicationRecord belongs_to :reorder_report belongs_to :product validates :quantity, presence: true def self.ransackable_attributes(_auth_object = nil) %w[created_at id id_value product_id quantity reorder_report_id updated_at] end def self.ransackable_associations %w[reorder_report product] end end end end
Version data entries
65 entries across 65 versions & 1 rubygems