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

« back to all changes in this revision

Viewing changes to project_search_create_uid/project_view.xml

  • Committer: Luis Ernesto García Medina - http://www.vauxoo.com
  • Date: 2013-06-08 21:42:28 UTC
  • mto: (543.25.10 addons-vauxoo)
  • mto: This revision was merged to the branch mainline in revision 820.
  • Revision ID: ernesto_gm@vauxoo.com-20130608214228-zd6xed976xyfdtqb
[ADD][project_search_create_uid] add fields write_date, write_uid, create_date, create_uid to model project.task and added this fields to view search

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<openerp>
 
3
        
 
4
        <data>
 
5
                <record id="view_task_search_form_inherit" model="ir.ui.view">
 
6
            <field name="name">project.task.search.form.inherit</field>
 
7
            <field name="model">project.task</field>
 
8
            <field name="inherit_id" ref="project.view_task_search_form"/>
 
9
            <field name="arch" type="xml">
 
10
                <xpath expr="//field[@name='categ_ids']" position="after">
 
11
                    <field string="Date Modified" name="write_date"/>
 
12
                    <field string="Last Modification User" name="write_uid"/>
 
13
                    <field string="Date Created" name="create_date"/>
 
14
                    <field string="Creator" name="create_uid"/>
 
15
                </xpath>
 
16
            </field>
 
17
        </record>
 
18
        
 
19
                
 
20
        </data>
 
21
 
 
22
</openerp>