[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
pull/1038/head
Víctor Martínez 2023-04-24 13:05:52 +02:00
parent 38b463020a
commit 9e0ba66fae
1 changed files with 2 additions and 1 deletions

View File

@ -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",
]