mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
58 lines
1.6 KiB
Ruby
58 lines
1.6 KiB
Ruby
|
class Transfer < ApplicationRecord
|
||
|
has_many :transactions, dependent: :nullify
|
||
|
|
||
|
validate :transaction_count, :from_different_accounts, :net_zero_flows, :all_transactions_marked
|
||
|
|
||
|
def inflow_transaction
|
||
|
transactions.find { |t| t.inflow? }
|
||
|
end
|
||
|
|
||
|
def outflow_transaction
|
||
|
transactions.find { |t| t.outflow? }
|
||
|
end
|
||
|
|
||
|
def destroy_and_remove_marks!
|
||
|
transaction do
|
||
|
transactions.each do |t|
|
||
|
t.update! marked_as_transfer: false
|
||
|
end
|
||
|
|
||
|
destroy!
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class << self
|
||
|
def build_from_accounts(from_account, to_account, date:, amount:, currency:, name:)
|
||
|
outflow = from_account.transactions.build(amount: amount.abs, currency: currency, date: date, name: name, marked_as_transfer: true)
|
||
|
inflow = to_account.transactions.build(amount: -amount.abs, currency: currency, date: date, name: name, marked_as_transfer: true)
|
||
|
|
||
|
new transactions: [ outflow, inflow ]
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def transaction_count
|
||
|
unless transactions.size == 2
|
||
|
errors.add :transactions, "must have exactly 2 transactions"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def from_different_accounts
|
||
|
accounts = transactions.map(&:account_id).uniq
|
||
|
errors.add :transactions, "must be from different accounts" if accounts.size < transactions.size
|
||
|
end
|
||
|
|
||
|
def net_zero_flows
|
||
|
unless transactions.sum(&:amount).zero?
|
||
|
errors.add :transactions, "must have an inflow and outflow that net to zero"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def all_transactions_marked
|
||
|
unless transactions.all?(&:marked_as_transfer)
|
||
|
errors.add :transactions, "must be marked as transfer"
|
||
|
end
|
||
|
end
|
||
|
end
|