[IMP] hr_recruitment: improved search views.
[odoo/odoo.git] / addons / project_issue_sheet / project_issue_sheet_view.xml
1 <?xml version="1.0"?>
2 <openerp>
3     <data>
4         <record model="ir.ui.view" id="project_issue_form_view">
5             <field name="name">Project Issue Tracker Form</field>
6             <field name="model">project.issue</field>
7             <field name="inherit_id" ref="project_issue.project_issue_form_view" />
8             <field name="type">form</field>
9             <field name="arch" type="xml">
10                 <field name="project_id" position="attributes">
11                     <attribute name="on_change">on_change_project(project_id)</attribute>
12                 </field>
13                 <field name="active" position="after">
14                     <newline/>
15                     <group colspan="4"> 
16                         <field name="analytic_account_id"
17                             domain="[('parent_id','!=',False),('partner_id', '=', partner_id),('type', '!=', 'view')]"
18                             on_change='on_change_account_id(analytic_account_id)'/>
19                     </group>
20                 </field>
21                 <xpath expr="//notebook/page[@string='Extra Info']" position="before">
22                     <page string="Worklogs">
23                         <field name="timesheet_ids" colspan="4" nolabel="1" context="{'default_user_id' : user_id, 'default_account_id' : analytic_account_id}">
24                             <tree editable="top" string="Timesheets">
25                                 <field name="name"/>
26                                 <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" widget="float_time"/>
27                                 <field name="account_id" invisible="0" domain="[('partner_id', '=', parent.partner_id)]" on_change="on_change_account_id(account_id)"/>
28                                 <field name="date"/>
29                                 <field name="user_id"/>
30                                 <field invisible="1" name="journal_id"/>
31                                 <field invisible="1" name="product_id"/>
32                                 <field invisible="1" name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
33                                 <field invisible="1" name="amount"/>
34                                 <field invisible="1" name="general_account_id"/>
35                             </tree>
36                         </field>
37                     </page>
38                 </xpath>
39             </field>
40         </record>
41     </data>
42 </openerp>