Skip to content
Snippets Groups Projects
Commit eaec9f7c authored by Hubert Van de Walle (huvw)'s avatar Hubert Van de Walle (huvw)
Browse files

[FIX] account: display journal entries total


Steps to reproduce
==================

- Go to Accounting > Accounting > Journal Entries

The total at the bottom is not displayed and there is a `-` instead.

Cause of the issue
==================

The `amount_total_signed` field uses the currency_field
`company_currency_id`.
It should be present in the view for the web client to be aware of it's
value.

opw-3316448

closes odoo/odoo#125360

Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
parent 698a1a0c
No related branches found
No related tags found
No related merge requests found
......@@ -368,6 +368,7 @@
<field name="model">account.move</field>
<field name="arch" type="xml">
<tree string="Journal Entries" sample="1" decoration-info="state == 'draft'" expand="context.get('expand', False)">
<field name="company_currency_id" invisible="1"/>
<field name="made_sequence_hole" invisible="1"/>
<field name="date"/>
<field name="name" decoration-danger="made_sequence_hole"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment