Skip to content

Commit

Permalink
Merge branch '14.0-imp-account_financial_report-field-account_interna…
Browse files Browse the repository at this point in the history
…l_group' of git+ssh://github.com/efatto/account-financial-reporting into 14.0
  • Loading branch information
Pretecno committed Dec 31, 2024
2 parents 725024b + b40229f commit e730dfb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion account_financial_report/report/trial_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,12 @@ def _get_data(
tb_initial_acc = []
for account in accounts:
tb_initial_acc.append(
{"account_id": account.id, "balance": 0.0, "amount_currency": 0.0}
{
"account_id": account.id,
"balance": 0.0,
"amount_currency": 0.0,
"account_internal_group": account.internal_group,
}
)
initial_domain_bs = self._get_initial_balances_bs_ml_domain(
account_ids,
Expand Down

0 comments on commit e730dfb

Please sign in to comment.