mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
14 lines
586 B
Ruby
14 lines
586 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Links an object bought and a payment schedule used to pay this object
|
||
|
class PaymentScheduleObject < Footprintable
|
||
|
belongs_to :object, polymorphic: true
|
||
|
belongs_to :reservation, foreign_type: 'Reservation', foreign_key: 'object_id'
|
||
|
belongs_to :subscription, foreign_type: 'Subscription', foreign_key: 'object_id'
|
||
|
belongs_to :wallet_transaction, foreign_type: 'WalletTransaction', foreign_key: 'object_id'
|
||
|
belongs_to :offer_day, foreign_type: 'OfferDay', foreign_key: 'object_id'
|
||
|
belongs_to :payment_schedule
|
||
|
|
||
|
after_create :chain_record
|
||
|
end
|