forked from OCA/account-invoicing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_move_view.xml
48 lines (48 loc) · 1.75 KB
/
account_move_view.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?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="currency_id" position="attributes">
<attribute name="invisible">0</attribute>
<attribute name="optional">hide</attribute>
</field>
<field name="company_currency_id" position="attributes">
<attribute name="invisible">0</attribute>
<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>