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