1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02:00

Refactor balance sheet weight calculation and improve group weight rendering

- Update BalanceSheet model to directly calculate account weights based on converted balances.
- Modify dashboard view to compute account weight as a percentage of classification total, enhancing clarity.
- Adjust group weight partial to handle effective weight, ensuring accurate rendering of weight representation.
This commit is contained in:
Josh Pigford 2025-05-23 12:25:18 -05:00
parent fd65b5a747
commit 5cfb4addbd
3 changed files with 14 additions and 9 deletions

View file

@ -60,7 +60,7 @@ class BalanceSheet
key = accountable.model_name.param_key
AccountGroup.new(
group = AccountGroup.new(
id: classification ? "#{classification}_#{key}_group" : "#{key}_group",
key: key,
name: accountable.display_name,
@ -72,13 +72,11 @@ class BalanceSheet
color: accountable.color,
syncing?: accounts.any?(&:is_syncing),
accounts: accounts.map do |account|
account.define_singleton_method(:weight) do
classification_total.zero? ? 0 : account.converted_balance / classification_total.to_d * 100
end
account
end.sort_by(&:weight).reverse
end.sort_by(&:converted_balance).reverse
)
group
end
groups.sort_by do |group|