feat(monthly): show asset accounts/currencies on specific sumaries

This commit is contained in:
Herculino Trotta
2026-08-15 01:30:57 -03:00
parent d71bf3ccb3
commit ea3e9fd68f
2 changed files with 38 additions and 2 deletions
-2
View File
@@ -226,7 +226,6 @@ def monthly_account_summary(request, month: int, year: int):
Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True)
)
.exclude(account__in=request.user.untracked_accounts.all())
.exclude(account__is_asset=True)
)
account_data = calculate_account_totals(transactions_queryset=queryset.all())
@@ -280,7 +279,6 @@ def monthly_currency_summary(request, month: int, year: int):
Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True)
)
.exclude(account__in=request.user.untracked_accounts.all())
.exclude(account__is_asset=True)
)
currency_data = calculate_currency_totals(queryset.all(), ignore_empty=True)