[IMP] project : improved access rights, group and menus
[odoo/odoo.git] / addons / hr_timesheet_sheet / hr_timesheet_sheet_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4        <record id="hr_timesheet_sheet_graph" model="ir.ui.view">
5          <field name="name">hr.timesheet.sheet.graph</field>
6          <field name="model">hr_timesheet_sheet.sheet</field>
7          <field name="type">graph</field>
8          <field name="arch" type="xml">
9              <graph string="Timesheets" type="bar">
10                  <field name="name"/>
11                  <field name="total_attendance" operator="+"/>
12                  <field name="total_timesheet" operator="+"/>
13              </graph>
14          </field>
15         </record>
16         <record id="hr_timesheet_account_form" model="ir.ui.view">
17             <field name="name">hr.timesheet.account.form</field>
18             <field name="model">hr_timesheet_sheet.sheet.account</field>
19             <field name="type">form</field>
20             <field name="arch" type="xml">
21                 <form string="Timesheet by Accounts">
22                     <field name="sheet_id" select="1"/>
23                     <field name="name" select="1" groups="analytic.group_analytic_accounting"/>
24                     <field name="total" sum="Total"/>
25                     <field name="invoice_rate"/>
26                 </form>
27             </field>
28         </record>
29
30         <record id="hr_timesheet_account_tree" model="ir.ui.view">
31             <field name="name">hr.timesheet.account.tree</field>
32             <field name="model">hr_timesheet_sheet.sheet.account</field>
33             <field name="type">tree</field>
34             <field name="arch" type="xml">
35                 <tree string="Timesheet by Accounts">
36                     <field name="sheet_id"/>
37                     <field name="name" groups="analytic.group_analytic_accounting"/>
38                     <field name="total" sum="Total"/>
39                     <field name="invoice_rate"/>
40                 </tree>
41             </field>
42         </record>
43
44         <record id="hr_timesheet_sheet_form" model="ir.ui.view">
45             <field name="name">hr.timesheet.sheet.form</field>
46             <field name="model">hr_timesheet_sheet.sheet</field>
47             <field name="type">form</field>
48             <field name="arch" type="xml">
49                 <form string="Timesheet">
50                     <group colspan="4" col="6">
51                         <field name="name"/>
52                         <field name="company_id" select="1" groups="base.group_multi_company"/>
53                         <field name="department_id" groups="base.group_extended"/>
54                         <newline/>
55                         <field name="employee_id"/>
56                         <field name="date_from"/>
57                         <field name="date_to"/>
58                     </group>
59                     <notebook colspan="4">
60                         <page string="Daily View">
61                             <group col="6" colspan="4">
62                                 <button name="button_dummy" string="Go to:" type="object" icon="terp-gtk-jump-to-ltr"/>
63                                 <field name="date_current" nolabel="1"/>
64                                 <label string=""/>
65                                 <button icon="terp-gtk-go-back-ltr" name="date_previous" string="" type="object"/>
66                                 <button name="date_today" string="Today" type="object" icon="terp-go-today"/>
67                                 <button icon="terp-gtk-go-back-rtl" name="date_next" string="" type="object"/>
68                             </group>
69
70                             <field colspan="3" context="name=date_current,user_id=user_id" height="100" name="attendances_ids" nolabel="1">
71                                 <tree string="Attendances" editable="bottom">
72                                     <field name="name"/>
73                                     <field name="action"/>
74                                     <field invisible="1" name="employee_id"/>
75                                 </tree>
76                             </field>
77                             <group col="1" colspan="1">
78                                 <button name="sign_in" string="Sign In" type="object" icon="terp-gtk-jump-to-ltr"/>
79                                 <button name="sign_out" string="Sign Out" type="object" icon="terp-gtk-jump-to-rtl"/>
80                             </group>
81                             <field name="state_attendance"/>
82                             <field name="total_attendance_day" widget="float_time"/>
83                             <field colspan="4" context="date=date_current,user_id=user_id" domain="[('name','=',date_current)]" name="timesheet_ids" nolabel="1">
84                                 <tree editable="top" string="Timesheet">
85                                     <field invisible="1" name="date"/>
86                                     <field domain="[('type','=','normal'), ('state', '&lt;&gt;', 'close')]" name="account_id" on_change="on_change_account_id(account_id)"/>
87                                     <field name="name"/>
88                                     <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" widget="float_time"/>
89                                     <field name="to_invoice"/>
90                                     <field invisible="1" name="journal_id"/>
91                                     <field invisible="1" name="product_id" domain="[('type','=','service')]" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
92                                     <field invisible="1" name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
93                                     <field invisible="1" name="amount"/>
94                                     <field invisible="1" name="general_account_id"/>
95                                     <field invisible="1" name="user_id" required="1"/>
96                                 </tree>
97                                 <form string="Timesheet">
98                                     <field name="date"/>
99                                     <field domain="[('type','=','normal'), ('state', '&lt;&gt;', 'close')]" name="account_id" on_change="on_change_account_id(account_id)"/>
100                                     <field name="name"/>
101                                     <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" widget="float_time"/>
102                                     <field name="to_invoice"/>
103                                     <field name="journal_id"/>
104                                     <field name="product_id" domain="[('type','=','service')]" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
105                                     <field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
106                                     <field name="amount"/>
107                                     <field name="general_account_id"/>
108                                     <field name="user_id" required="1"/>
109                                 </form>
110                             </field>
111                             <field name="total_difference_day" widget="float_time"/>
112                             <field name="total_timesheet_day" widget="float_time"/>
113                         </page>
114                         <page string="By Day">
115                             <field colspan="4" name="period_ids" nolabel="1">
116                                 <tree colors="red:total_difference&lt;0.1;blue:total_difference&gt;=0.1" string="Period">
117                                     <field name="name"/>
118                                     <field name="total_attendance" widget="float_time"/>
119                                     <field name="total_timesheet" widget="float_time"/>
120                                     <field name="total_difference" widget="float_time"/>
121                                 </tree>
122                             </field>
123                             <group colspan="4" col="6">
124                                 <field name="total_attendance" widget="float_time"/>
125                                 <field name="total_timesheet" widget="float_time"/>
126                                 <field name="total_difference" widget="float_time"/>
127                             </group>
128                         </page>
129                     </notebook>
130                     <field name="state"/>
131                     <group col="4" colspan="2">
132                         <button name="button_confirm" states="draft" string="Close" type="object" icon="terp-check"/>
133                         <button name="action_set_to_draft" states="done" string="Set to Draft" type="object" icon="terp-stock_effects-object-colorize"/>
134                         <button name="cancel" states="confirm" string="Refuse" type="workflow" icon="gtk-cancel"/>
135                         <button name="done" states="confirm" string="Approve" type="workflow" icon="terp-camera_test"/>
136                     </group>
137                 </form>
138             </field>
139         </record>
140
141         <record id="view_hr_timesheet_sheet_filter" model="ir.ui.view">
142             <field name="name">hr_timesheet_sheet.sheet.filter</field>
143             <field name="model">hr_timesheet_sheet.sheet</field>
144             <field name="type">search</field>
145             <field name="arch" type="xml">
146                 <search string="Search Timesheet">
147                     <group col="10" colspan="4">
148                         <filter icon="terp-document-new" string="In Draft" domain="[('state','in',('draft', 'new'))]" help="Unvalidated Timesheets"/>
149                         <filter icon="terp-camera_test" string="To Approve" domain="[('state','=','confirm')]" help="Confirmed Timesheets"/>
150                         <separator orientation="vertical"/>
151                         <field name="employee_id" select="1"/>
152                         <field name="date_from"/>
153                         <field name="department_id" widget="selection">
154                             <filter icon="terp-personal+"
155                                 domain="[('department_id','=',context.get('department_id',False))]"
156                                 help="My Departments Timesheet"/>
157                         </field>
158                     </group>
159                     <newline/>
160                     <group expand="0" string="Group By...">
161                         <filter string="Employees" icon="terp-personal" domain="[]" context="{'group_by':'employee_id'}"/>
162                         <filter string="Department" icon="terp-personal+" domain="[]" context="{'group_by':'department_id'}"/>
163                     </group>
164                 </search>
165             </field>
166         </record>
167
168         <record id="act_hr_timesheet_sheet_form" model="ir.actions.act_window">
169             <field name="name">Timesheets</field>
170             <field name="type">ir.actions.act_window</field>
171             <field name="res_model">hr_timesheet_sheet.sheet</field>
172             <field name="view_type">form</field>
173             <field name="view_id" eval="False"/>
174             <field name="context">{'search_default_my_timesheet':1, }</field>
175             <field name="search_view_id" ref="view_hr_timesheet_sheet_filter"/>
176             <field name="help">Employees can encode their time spent on the different projects. A project is an analytic account and the time spent on a project generate costs on the analytic account.</field>
177         </record>
178
179         <!--Time Tracking menu in project Management-->
180         <menuitem icon="terp-project" id="base.menu_main_pm" name="Project" sequence="10"/>
181         <menuitem
182              id="base.menu_project_management_time_tracking"
183              name="Time Tracking"
184              parent="base.menu_main_pm" sequence="5"/>
185
186         <menuitem action="act_hr_timesheet_sheet_form" id="menu_act_hr_timesheet_sheet_form" parent="hr_attendance.menu_hr_time_tracking"
187              sequence="2"/>
188
189         <menuitem action="hr_timesheet_sheet.act_hr_timesheet_sheet_form" id="menu_act_project_management_timesheet_sheet_form" parent="base.menu_project_management_time_tracking"
190             sequence="5"/>
191
192         <!--
193             Company inheritancy
194         -->
195
196         <record id="hr_timesheet_sheet_company" model="ir.ui.view">
197             <field name="name">res.company.sheet</field>
198             <field name="model">res.company</field>
199             <field name="type">form</field>
200             <field name="inherit_id" ref="base.view_company_form"/>
201             <field name="arch" type="xml">
202                 <page string="Configuration" position="inside">
203                     <separator string="Timesheets" colspan="4"/>
204                     <field name="timesheet_range"/>
205                     <field name="timesheet_max_difference"/>
206                     <newline/>
207                 </page>
208             </field>
209         </record>
210
211         <!--
212             hr.analytic.timesheet inheritancy
213         -->
214
215         <record id="hr_timesheet_line_form" model="ir.ui.view">
216             <field name="name">hr.analytic.timesheet.form</field>
217             <field name="model">hr.analytic.timesheet</field>
218             <field name="type">form</field>
219             <field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_form"/>
220             <field name="arch" type="xml">
221                 <field name="date" position="after">
222                     <field name="sheet_id" />
223                 </field>
224             </field>
225         </record>
226         <!--
227             hr.attendance inheritancy
228         -->
229
230         <record model="ir.ui.view" id="view_hr_attendance_filter">
231             <field name="name">view_hr_attendance_filter</field>
232             <field name="model">hr.attendance</field>
233             <field name="type">search</field>
234             <field name="inherit_id" ref="hr_attendance.view_hr_attendance_filter" />
235             <field name="arch" type="xml">
236                 <field name="action" position="after">
237                     <field name="sheet_id" select="1" />
238                 </field>
239             </field>
240         </record>
241
242         <record id="view_attendance_form" model="ir.ui.view">
243             <field name="name">hr.attendance.form</field>
244             <field name="model">hr.attendance</field>
245             <field name="type">form</field>
246             <field name="inherit_id" ref="hr_attendance.view_attendance_form"/>
247             <field name="arch" type="xml">
248                 <field name="action_desc" position="after">
249                     <field name="sheet_id"/>
250                 </field>
251             </field>
252         </record>
253         <record id="view_attendance_tree" model="ir.ui.view">
254             <field name="name">hr.attendance.tree</field>
255             <field name="model">hr.attendance</field>
256             <field name="type">tree</field>
257             <field name="inherit_id" ref="hr_attendance.view_attendance_tree"/>
258             <field name="arch" type="xml">
259                 <field name="action" position="after">
260                     <field name="sheet_id"/>
261                 </field>
262             </field>
263         </record>
264         <record id="view_attendance_tree_who" model="ir.ui.view">
265             <field name="name">hr.attendance.tree</field>
266             <field name="model">hr.attendance</field>
267             <field name="type">tree</field>
268             <field name="inherit_id" ref="hr_attendance.view_attendance_who"/>
269             <field name="arch" type="xml">
270                 <field name="action" position="after">
271                     <field name="sheet_id"/>
272                 </field>
273             </field>
274         </record>
275
276         <act_window
277         context="{'search_default_sheet_id': [active_id]}"
278         id="act_hr_timesheet_sheet_sheet_by_day"
279         name="Timesheet by Account"
280         res_model="hr_timesheet_sheet.sheet.account"
281         src_model="hr_timesheet_sheet.sheet"/>
282
283         <act_window
284         context="{'search_default_sheet_id': [active_id]}"
285         id="act_hr_timesheet_sheet_sheet_2_hr_analytic_timesheet"
286         name="Timesheet Lines"
287         res_model="hr.analytic.timesheet"
288         src_model="hr_timesheet_sheet.sheet"/>
289
290
291         <act_window
292         context="{'search_default_sheet_id': [active_id]}"
293         id="act_hr_timesheet_sheet_sheet_2_hr_attendance"
294         name="Attendances"
295         res_model="hr.attendance"
296         src_model="hr_timesheet_sheet.sheet"/>
297
298         <record id="hr_timesheet_sheet_tree_simplified" model="ir.ui.view">
299             <field name="name">hr.timesheet.sheet.tree</field>
300             <field name="model">hr_timesheet_sheet.sheet</field>
301             <field name="type">tree</field>
302             <field eval="10" name="priority"/>
303             <field name="arch" type="xml">
304                 <tree colors="blue:state in ('draft');black:state in ('confirm','new');gray:state in('done')" string="Timesheets">
305                     <field name="employee_id"/>
306                     <field name="date_from"/>
307                     <field name="date_to"/>
308                     <field name="department_id"/>
309                     <field name="total_attendance"/>
310                     <field name="total_timesheet"/>
311                     <field name="total_difference"/>
312                     <field name="state"/>
313                 </tree>
314             </field>
315         </record>
316         <record id="view_hr_timesheet_sheet_graph" model="ir.ui.view">
317             <field name="name">hr.timesheet.sheet.sheet.graph</field>
318             <field name="model">hr_timesheet_sheet.sheet</field>
319             <field name="type">graph</field>
320             <field name="arch" type="xml">
321                 <graph orientation="horizontal" string="Available Attendance" type="bar">
322                     <field name="name"/>
323                     <field name="total_attendance" operator="+"/>
324                 </graph>
325             </field>
326         </record>
327   <!-- Timesheet Button on Employee Form -->
328   <act_window
329            context="{'search_default_employee_id': [active_id]}"
330            id="act_hr_employee_2_hr_timesheet" name="Timesheets" res_model="hr_timesheet_sheet.sheet" src_model="hr.employee"/>
331
332     </data>
333 </openerp>