9 lines
168 B
Ruby
9 lines
168 B
Ruby
class PProductCat < ApplicationRecord
|
|
has_many :p_products
|
|
|
|
has_many :tvable_tva_rates, :as => :tvable
|
|
has_many :tva_rates, :through => :tvable_tva_rates
|
|
|
|
|
|
end
|