Files
Odoo-18.0-20251222/account_invoice_tree_currency/views/account_move_view.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

45 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2021 ForgeFlow S.L. (http://www.forgeflow.com)
License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
-->
<odoo>
<record id="view_invoice_tree" model="ir.ui.view">
<field name="name">account.invoice.tree</field>
<field name="model">account.move</field>
<field name="inherit_id" ref="account.view_invoice_tree" />
<field name="arch" type="xml">
<field name="company_currency_id" position="attributes">
<attribute name="column_invisible" />
<attribute name="optional">hide</attribute>
</field>
<field name="amount_residual_signed" position="after">
<field
name="amount_untaxed"
string="Tax Excluded (Currency)"
sum="Total"
optional="hide"
/>
<field
name="amount_tax"
string="Tax (Currency)"
sum="Total"
optional="hide"
/>
<field
name="amount_total"
string="Total (Currency)"
sum="Total"
optional="hide"
/>
<field
name="amount_residual"
string="Amount Due (Currency)"
sum="Amount Due"
optional="hide"
/>
</field>
</field>
</record>
</odoo>