~vauxoo/addons-vauxoo/7.0-user_story-rev4-kty

« back to all changes in this revision

Viewing changes to company_description/company.xml

  • Committer: Luis Torres
  • Date: 2012-07-24 23:18:40 UTC
  • mto: This revision was merged to the branch mainline in revision 353.
  • Revision ID: luis_t@vauxoo.com-20120724231840-1cc90pgmzobt8fcm
[ADD][company_description]Add fields description for purchase, sale && invoice in company

Show diffs side-by-side

added added

removed removed

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