# 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 :statistic_profile_prepaid_pack, foreign_type: 'StatisticProfilePrepaidPack', foreign_key: 'object_id' belongs_to :payment_schedule after_create :chain_record end