Skip to content
Snippets Groups Projects
Commit 478ebc74 authored by Jorge Pinna Puissant's avatar Jorge Pinna Puissant
Browse files

[FIX] account_edi: add list of edi documents


This commit will add a new group in the payment view with the list of
the edi documents for this payment. The group will only be visible in
debug mode. This is done to help the debugging and the error finding
when there is a problem with an edi document.

Related to 2e01da47

closes odoo/odoo#61543

Signed-off-by: default avatarJorge Pinna Puissant (jpp) <jpp@odoo.com>
parent cdafba2f
Branches
Tags
No related merge requests found
......@@ -34,6 +34,18 @@
<field name="edi_state" invisible="1" />
<field name="edi_state" attrs="{'invisible': ['|', ('edi_document_ids', '=', []), ('state', '=', 'draft')]}"/>
</xpath>
<xpath expr="//group[@name='group3']" position="after">
<group groups="base.group_no_one">
<field name="edi_document_ids" string="EDI Documents">
<tree create="false" delete="false" edit="false" decoration-danger="error">
<field name="name"/>
<field name="edi_format_name"/>
<field name="state"/>
<field name="error" invisible="1"/>
</tree>
</field>
</group>
</xpath>
</field>
</record>
</data>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment