From 14e3724cb4c6baf6d28367283d10629e5ee8b185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= Date: Mon, 24 Apr 2023 13:05:52 +0200 Subject: [PATCH] [IMP] account_financial_report: Show move_name in entry column from general ledger report It is not necessary to repeat part of the text shown in Ref - Label column. TT42731 --- account_financial_report/report/general_ledger.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/account_financial_report/report/general_ledger.py b/account_financial_report/report/general_ledger.py index de3d1add..b4c4193c 100644 --- a/account_financial_report/report/general_ledger.py +++ b/account_financial_report/report/general_ledger.py @@ -312,7 +312,7 @@ class GeneralLedgerReport(models.AbstractModel): move_line_data = { "id": move_line["id"], "date": move_line["date"], - "entry": move_line["move_id"][1], + "entry": move_line["move_name"], "entry_id": move_line["move_id"][0], "journal_id": move_line["journal_id"][0], "account_id": move_line["account_id"][0], @@ -873,4 +873,5 @@ class GeneralLedgerReport(models.AbstractModel): "amount_currency", "balance", "tax_ids", + "move_name", ]