Files
sx-fc/app/models/commissioner.rb
2017-08-25 13:44:22 +06:30

8 lines
247 B
Ruby

class Commissioner < ApplicationRecord
belongs_to :employee, foreign_key: 'emp_id'
belongs_to :commission, foreign_key: 'commission_type'
has_many :in_juties
has_many :product_commissions
scope :active, -> { where(is_active: true) }
end