Skip to content

Commit

Permalink
[14.0][IMP] add field account_internal_group to account_financial_rep…
Browse files Browse the repository at this point in the history
…ort for l10n-italy report
  • Loading branch information
sergiocorato committed Nov 18, 2024
1 parent 0cfa429 commit b40229f
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 b40229f

Please sign in to comment.