summaryrefslogtreecommitdiff
path: root/addons/l10n_it_stock_ddt/views/account_invoice_views.xml
blob: 60a5967c49167684ef1df1d8746d8822d9a5e972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<odoo>

    <record id="account_invoice_view_form_inherit_ddt" model="ir.ui.view">
        <field name="name">account.invoice.form.inherit.ddt</field>
        <field name="model">account.move</field>
        <field name="inherit_id" ref="account.view_move_form"/>
        <field name="arch" type="xml">
            <xpath expr="//div[@name='button_box']" position="inside">
                <button name="get_linked_ddts" type="object" class="oe_stat_button" icon="fa-calendar" attrs="{'invisible':[('l10n_it_ddt_count','=', 0)]}">
                    <field name="l10n_it_ddt_count" widget="statinfo" string="DDTs"/>
                </button>
            </xpath>
        </field>
    </record>

</odoo>