[IMP] account_financial_report: avoid crash if data structure changes in the future

pull/1240/head
Alexis de Lattre 2024-10-24 16:08:24 +02:00
parent 0ede4ad83f
commit 88c2503afe
1 changed files with 4 additions and 1 deletions

View File

@ -313,7 +313,10 @@ class TrialBalanceReport(models.AbstractModel):
for acc_id, total_data in total_amount.items():
tmp_list = sorted(
total_data.items(),
key=lambda x: isinstance(x[1], dict) and x[1]["partner_name"] or x[0],
key=lambda x: isinstance(x[0], int)
and isinstance(x[1], dict)
and x[1]["partner_name"]
or x[0],
)
total_amount[acc_id] = {}
for key, value in tmp_list: