1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 14:19:39 +02:00
Maybe/app/models/valuation.rb

20 lines
453 B
Ruby
Raw Normal View History

class Valuation < ApplicationRecord
belongs_to :account
after_commit :sync_account
scope :in_period, ->(period) { period.date_range.nil? ? all : where(date: period.date_range) }
def self.to_series(account, period = Period.all)
MoneySeries.new(
in_period(period).order(:date),
{ trend_type: account.classification, amount_accessor: :value }
)
end
private
def sync_account
self.account.sync_later
end
end