mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* Add kind field to valuation * Fix schema conflict * Add kind to valuation * Scaffold opening balance manager * Opening balance manager implementation * Update account import to use opening balance manager + tests * Update account to use opening balance manager * Fix test assertions, usage of current balance manager * Lint fixes * Add Opening Balance manager, add tests to forward calculator * Add credit card to "all cash" designation * Simplify valuation model * Add current balance manager with tests * Add current balance logic to reverse calculator and plaid sync * Tweaks to initial calc logic * Ledger testing helper, tweak assertions for reverse calculator * Update test assertions * Extract balance transformer, simplify calculators * Algo simplifications * Final tweaks to calculators * Cleanup * Fix error, propagate sync errors up to parent * Update migration script, valuation naming
46 lines
1.2 KiB
Ruby
46 lines
1.2 KiB
Ruby
class Balance::SyncCache
|
|
def initialize(account)
|
|
@account = account
|
|
end
|
|
|
|
def get_reconciliation_valuation(date)
|
|
converted_entries.find { |e| e.date == date && e.valuation? && e.valuation.reconciliation? }
|
|
end
|
|
|
|
def get_holdings(date)
|
|
converted_holdings.select { |h| h.date == date }
|
|
end
|
|
|
|
def get_entries(date)
|
|
converted_entries.select { |e| e.date == date && (e.transaction? || e.trade?) }
|
|
end
|
|
|
|
private
|
|
attr_reader :account
|
|
|
|
def converted_entries
|
|
@converted_entries ||= account.entries.order(:date).to_a.map do |e|
|
|
converted_entry = e.dup
|
|
converted_entry.amount = converted_entry.amount_money.exchange_to(
|
|
account.currency,
|
|
date: e.date,
|
|
fallback_rate: 1
|
|
).amount
|
|
converted_entry.currency = account.currency
|
|
converted_entry
|
|
end
|
|
end
|
|
|
|
def converted_holdings
|
|
@converted_holdings ||= account.holdings.map do |h|
|
|
converted_holding = h.dup
|
|
converted_holding.amount = converted_holding.amount_money.exchange_to(
|
|
account.currency,
|
|
date: h.date,
|
|
fallback_rate: 1
|
|
).amount
|
|
converted_holding.currency = account.currency
|
|
converted_holding
|
|
end
|
|
end
|
|
end
|