~vauxoo/addons-vauxoo/7.0-account_move_folio-dev-hbto

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record model="ir.ui.view" id="view_res_company_inherit_legend_form">
            <field name="name">view.res.company.inherit.legend.form</field>
            <field name="model">res.company</field>
            <field name="type">form</field>
            <field name="inherit_id" ref="base.view_company_form"/>
            <field name="arch" type="xml">
                <xpath expr="/form/notebook/page[@string='Bank Accounts']" position="after">
                    <page string="Descriptions">
                           <separator string="Invoice Description"/>
                           <field colspan="4" name="description_invoice" nolabel="1"/>
                           <separator string="Sale Description"/>
                           <field colspan="4" name="description_sale" nolabel="1"/>
                           <separator string="Purchase Description"/>
                           <field colspan="4" name="description_purchase" nolabel="1"/>
                    </page>
                </xpath>
            </field>
        </record>
    </data>
</openerp>