mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
53 lines
1.2 KiB
Ruby
53 lines
1.2 KiB
Ruby
|
# All accounts are "anchored" with start/end valuation records, with transactions,
|
||
|
# trades, and reconciliations between them.
|
||
|
module Account::Anchorable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
include Monetizable
|
||
|
|
||
|
monetize :opening_balance
|
||
|
end
|
||
|
|
||
|
def set_opening_anchor_balance(**opts)
|
||
|
opening_balance_manager.set_opening_balance(**opts)
|
||
|
end
|
||
|
|
||
|
def opening_anchor_date
|
||
|
opening_balance_manager.opening_date
|
||
|
end
|
||
|
|
||
|
def opening_anchor_balance
|
||
|
opening_balance_manager.opening_balance
|
||
|
end
|
||
|
|
||
|
def has_opening_anchor?
|
||
|
opening_balance_manager.has_opening_anchor?
|
||
|
end
|
||
|
|
||
|
def set_current_anchor_balance(balance)
|
||
|
current_balance_manager.set_current_balance(balance)
|
||
|
end
|
||
|
|
||
|
def current_anchor_balance
|
||
|
current_balance_manager.current_balance
|
||
|
end
|
||
|
|
||
|
def current_anchor_date
|
||
|
current_balance_manager.current_date
|
||
|
end
|
||
|
|
||
|
def has_current_anchor?
|
||
|
current_balance_manager.has_current_anchor?
|
||
|
end
|
||
|
|
||
|
private
|
||
|
def opening_balance_manager
|
||
|
@opening_balance_manager ||= Account::OpeningBalanceManager.new(self)
|
||
|
end
|
||
|
|
||
|
def current_balance_manager
|
||
|
@current_balance_manager ||= Account::CurrentBalanceManager.new(self)
|
||
|
end
|
||
|
end
|