mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
11 lines
653 B
Ruby
11 lines
653 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# AdvancedAccounting enables the various objects to have detailed accounting settings
|
||
|
class AdvancedAccounting < ApplicationRecord
|
||
|
belongs_to :accountable, polymorphic: true
|
||
|
belongs_to :machine, foreign_type: 'Machine', foreign_key: 'accountable_id', inverse_of: :advanced_accounting
|
||
|
belongs_to :training, foreign_type: 'Training', foreign_key: 'accountable_id', inverse_of: :advanced_accounting
|
||
|
belongs_to :space, foreign_type: 'Space', foreign_key: 'accountable_id', inverse_of: :advanced_accounting
|
||
|
belongs_to :event, foreign_type: 'event', foreign_key: 'accountable_id', inverse_of: :advanced_accounting
|
||
|
end
|