10 lines
244 B
Ruby
10 lines
244 B
Ruby
class PCommercialObjectCat < ApplicationRecord
|
|
belongs_to :p_commercial
|
|
belongs_to :p_commercial_objective
|
|
belongs_to :p_product_cat
|
|
|
|
validates :objective_percent, :presence => true
|
|
validates :weight_objective, :presence => true
|
|
|
|
end
|