1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 05:25:24 +02:00

Bug fixes for specialized account pages (#1275)

* Default for credit card fields

* Save institution on new account forms

* Fix property, vehicle, loan, credit card pages
This commit is contained in:
Zach Gollwitzer 2024-10-09 17:20:38 -04:00 committed by GitHub
parent b4d0fdbe0d
commit a2ab217925
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 26 additions and 13 deletions

View file

@ -83,7 +83,8 @@ class Account < ApplicationRecord
end
def original_balance
balances.chronological.first&.balance || balance
balance_amount = balances.chronological.first&.balance || balance
Money.new(balance_amount, currency)
end
def owns_ticker?(ticker)