1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/wallet_transaction.rb

20 lines
473 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# track of all transactions payed using the given wallet
2016-07-04 19:20:10 +02:00
class WalletTransaction < ActiveRecord::Base
2016-07-05 12:30:52 +02:00
include AmountConcern
belongs_to :invoicing_profile
2016-07-04 19:20:10 +02:00
belongs_to :wallet
belongs_to :reservation
belongs_to :transactable, polymorphic: true
has_one :invoice
validates_inclusion_of :transaction_type, in: %w[credit debit]
validates :invoicing_profile, :wallet, presence: true
def user
invoicing_profile.user
end
2016-07-04 19:20:10 +02:00
end