~vauxoo/addons-vauxoo/7.0-add_project_followers_rule-dev-ernesto

« back to all changes in this revision

Viewing changes to invoice_date_ref/invoice_date.xml

  • Committer: Fernando.rangel
  • Date: 2013-07-18 17:48:35 UTC
  • mto: This revision was merged to the branch mainline in revision 651.
  • Revision ID: fernando.rangel@vauxoo.com-20130718174835-bx64q5nqgkzkyubw
[ADD][invoice_date_ref]add field date ref

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="account_invoice_form_view">
 
5
            <field name="name">account_invoice</field>
 
6
            <field name="model">account.invoice</field>
 
7
            <field name="inherit_id" ref="account.invoice_form" />
 
8
            <field name="arch" type="xml">
 
9
                <xpath expr="//field[@name='date_invoice']" position="before">
 
10
                    <field string="Fecha Informativa:" name="date_info" select=1/>
 
11
                </xpath>
 
12
            </field>
 
13
        </record>
 
14
        <record model="ir.ui.view" id="view_account_invoice_tree">
 
15
            <field name="name">view.account_invoice.tree</field>
 
16
            <field name="model">account.invoice</field>
 
17
            <field name="inherit_id" ref="account.invoice_tree" /> 
 
18
            <field name="arch" type="xml">
 
19
                <xpath expr="//field[@name='date_due']" position="before">
 
20
                    <field string="Fecha Informativa:" name="date_info" select=1/>
 
21
                </xpath>       
 
22
            </field>
 
23
        </record>
 
24
    </data>
 
25
</openerp>
 
26
 
 
27