-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhr_view.xml
38 lines (33 loc) · 1.39 KB
/
hr_view.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8" ?>
<openerp>
<data>
<!-- Employee Records -->
<record id="hr_employee_view_tree" model="ir.ui.view">
<field name="name">hr.employee.tree.seniority</field>
<field name="model">hr.employee</field>
<field name="inherit_id" ref="hr.view_employee_tree"/>
<field name="arch" type="xml">
<data>
<xpath expr="//field[@name='work_phone']" position="before">
<field name="length_of_service"/>
</xpath>
</data>
</field>
</record>
<record id="hr_employee_view_form_inherit" model="ir.ui.view">
<field name="name">hr.employee.form.seniority</field>
<field name="model">hr.employee</field>
<field name="inherit_id" ref="hr.view_employee_form"/>
<field name="arch" type="xml">
<data>
<xpath expr="//group[@name='active_group']" position="after">
<group string="Duration of Service">
<field name="initial_employment_date"/>
<field name="length_of_service"/>
</group>
</xpath>
</data>
</field>
</record>
</data>
</openerp>