1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-03 14:24:23 +01:00
fab-manager/app/models/payment_schedule_item.rb

13 lines
293 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Represents a due date and the associated amount for a PaymentSchedule
class PaymentScheduleItem < Footprintable
belongs_to :payment_schedule
belongs_to :invoice
after_create :chain_record
def self.columns_out_of_footprint
%w[invoice_id]
end
end