[MERGE] merge with parent branch
[odoo/odoo.git] / addons / hr_timesheet / hr_timesheet_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="hr_timesheet_line_tree" model="ir.ui.view">
6             <field name="name">hr.analytic.timesheet.tree</field>
7             <field name="model">hr.analytic.timesheet</field>
8             <field name="type">tree</field>
9             <field name="arch" type="xml">
10                 <tree editable="bottom" string="Timesheet Lines">
11                     <field name="date" on_change="on_change_date(date)"/>
12                     <field name="user_id" on_change="on_change_user_id(user_id)" required="1"/>
13                     <field name="journal_id" invisible="1"/>
14                     <field name="name"/>
15                     <field domain="[('type','=','normal'),('use_timesheets','=',1)]" name="account_id" context="{'default_use_timesheets': 1}"/>
16                     <field name="product_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" required="1" domain="[('type','=','service')]" invisible="1"/>
17                     <field name="unit_amount" string="Duration" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" sum="Total time" widget="float_time"/>
18                     <field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" invisible="1"/>
19                     <field name="amount" sum="Total cost" invisible="1"/>
20                     <field name="general_account_id" invisible="1"/>
21                 </tree>
22             </field>
23         </record>
24         <record id="hr_timesheet_line_form" model="ir.ui.view">
25             <field name="name">hr.analytic.timesheet.form</field>
26             <field name="model">hr.analytic.timesheet</field>
27             <field name="type">form</field>
28             <field name="arch" type="xml">
29                 <form string="Timesheet Lines" version="7.0">
30                     <sheet>
31                     <group>
32                         <group>
33                             <field name="name"/>
34                             <field name="user_id" on_change="on_change_user_id(user_id)" required="1"/>
35                         </group>
36                         <group>
37                             <field name="date" on_change="on_change_date(date)"/>
38                         </group>
39                     </group>
40                     <notebook>
41                         <page string="Information">
42                         <group>
43                             <group string="Product">
44                                 <field name="product_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" required="1" domain="[('type','=','service')]"/>
45                                 <label string="Duration" for="unit_amount"/>
46                                 <div>
47                                     <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" class="oe_inline"/>
48                                     <field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" class="oe_inline"/>
49                                 </div>
50                             </group>
51                             <group string="Accounting">
52                                 <field domain="[('type','=','normal'),('state', '&lt;&gt;', 'close'),('parent_id','!=',False)]" name="account_id" select="1"/>
53                                 <field name="amount"/>
54                                 <field name="general_account_id"/>
55                                 <field name="journal_id"/>
56                             </group>
57                         </group>
58                         </page>
59                     </notebook>
60                     </sheet>
61                 </form>
62             </field>
63         </record>
64
65         <record id="hr_timesheet_line_search" model="ir.ui.view">
66             <field name="name">hr.analytic.timesheet.search</field>
67             <field name="model">hr.analytic.timesheet</field>
68             <field name="type">search</field>
69             <field name="arch" type="xml">
70                 <search string="Timesheet">
71                     <field name="date"/>
72                     <field name="user_id"/>
73                     <field name="account_id"/>
74                     <group expand="0" string="Group By...">
75                         <filter string="Users" icon="terp-personal" domain="[]" context="{'group_by':'user_id'}"/>
76                         <filter string="Analytic account" icon="terp-folder-green" domain="[]" context="{'group_by':'account_id'}"/>
77                         <filter string="Product" icon="terp-accessories-archiver" domain="[]" context="{'group_by':'product_id'}"/>
78                         <filter string="Date" icon="terp-go-month" domain="[]" context="{'group_by':'date'}"/>
79                     </group>
80                 </search>
81             </field>
82         </record>
83         
84         <record id="account_analytic_account_timesheet_form" model="ir.ui.view">
85             <field name="name">account.analytic.account.invoice.form</field>
86             <field name="model">account.analytic.account</field>
87             <field name="type">form</field>
88             <field name="inherit_id" ref="analytic.view_account_analytic_account_form"/>
89             <field name="arch" type="xml">
90                 <xpath expr='//separator[@name="project_sep"]' position='replace'>
91                     <separator name="project_sep" string="Project Management" colspan="4"/> <!-- removal of invisible attribute -->
92                 </xpath>
93                 <xpath expr='//separator[@name="project_sep"]' position='after'>
94                     <field name="use_timesheets"/>
95                 </xpath>
96             </field>
97         </record>
98
99         <record id="act_hr_timesheet_line_evry1_all_form" model="ir.actions.act_window">
100             <field name="name">Timesheet Lines</field>
101             <field name="type">ir.actions.act_window</field>
102             <field name="res_model">hr.analytic.timesheet</field>
103             <field name="view_type">form</field>
104             <field name="view_mode">tree,form</field>
105             <field name="context">{"search_default_today":1}</field>
106             <field name="search_view_id" ref="hr_timesheet_line_search"/>
107             <field name="help" type="html">
108               <p class="oe_view_nocontent_create">
109                 Click to your timesheets.
110               </p><p>
111                 Through this menu you can register and follow your workings
112                 hours by project every day.
113               </p>
114             </field>
115         </record>
116
117         <menuitem id="menu_hr_working_hours" parent="hr_attendance.menu_hr_time_tracking" action="act_hr_timesheet_line_evry1_all_form"/>
118
119         <record id="hr_timesheet_employee_extd_form" model="ir.ui.view">
120             <field name="name">hr.timesheet.employee.extd_form</field>
121             <field name="model">hr.employee</field>
122             <field name="inherit_id" ref="hr.view_employee_form"/>
123             <field name="arch" type="xml">
124                 <page string="Personal Information" position="after">
125                     <page string="Timesheets" groups="base.group_hr_user">
126                         <group>
127                             <group col="2">
128                                 <field name="product_id" domain="[('type','=','service')]"/>
129                                 <field name="journal_id"/>
130                             </group>
131                         </group>
132                     </page>
133                 </page>
134             </field>
135         </record>
136
137         <menuitem id="menu_hr_timesheet_reports" parent="hr.menu_hr_reporting" sequence="5" name="Timesheet"/>
138
139
140     </data>
141 </openerp>