From 167b855f7b135a07f063993225d3c480da9686fc Mon Sep 17 00:00:00 2001 From: ferran-73 Date: Mon, 9 Aug 2021 13:32:47 +0200 Subject: [PATCH] [14.0][FIX] account_financial_report: fix method parameter order --- account_financial_report/report/open_items_xlsx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_financial_report/report/open_items_xlsx.py b/account_financial_report/report/open_items_xlsx.py index ce266080..a1a3cfb3 100644 --- a/account_financial_report/report/open_items_xlsx.py +++ b/account_financial_report/report/open_items_xlsx.py @@ -185,8 +185,8 @@ class OpenItemsXslx(models.AbstractModel): self.write_ending_balance_from_dict( accounts_data[account_id], type_object, - report_data, total_amount, + report_data, account_id, )