[IMP] Void oe_highlight in oe_form_editable
[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">
70                         <field name="name"/>
71                         <field name="department_id"/>
72                         <field name="company_id" groups="base.group_multi_company"/>
73                         <field name="user_id" invisible="1"/>
74                     </group>
75                     <notebook>
76                         <page string="Daily">
77                             <group col="6" colspan="4">
78                                 <button name="button_dummy" string="Go to:" type="object" icon="terp-gtk-jump-to-ltr"/>
79                                 <field name="date_current" nolabel="1"/>
80                                 <label string=""/>
81                                 <button icon="terp-gtk-go-back-ltr" name="date_previous" string="" type="object"/>
82                                 <button name="date_today" string="Today" type="object" icon="terp-go-today"/>
83                                 <button icon="terp-gtk-go-back-rtl" name="date_next" string="" type="object"/>
84                             </group>
85
86                             <field colspan="3" context="{'name':date_current,'user_id':user_id}" height="100" name="attendances_ids" nolabel="1">
87                                 <tree string="Attendances" editable="bottom">
88                                     <field name="name"/>
89                                     <field name="action"/>
90                                     <field invisible="1" name="employee_id"/>
91                                 </tree>
92                             </field>
93                             <group col="4" colspan="1">
94                                 <field name="state_attendance"/>
95                                 <button name="sign_in" string="Sign In" type="object" icon="terp-gtk-jump-to-ltr"/>
96                                 <button name="sign_out" string="Sign Out" type="object" icon="terp-gtk-jump-to-rtl"/>
97                                 <field name="total_attendance_day" widget="float_time" colspan="4"/>
98                             </group>
99                             <field colspan="4" context="{'date':date_current,'user_id':user_id}" domain="[('name','=',date_current)]" name="timesheet_ids" nolabel="1">
100                                 <tree editable="top" string="Timesheet Lines">
101                                     <field invisible="1" name="date"/>
102                                     <field domain="[('type','=','normal'), ('state', '&lt;&gt;', 'close')]" name="account_id" on_change="on_change_account_id(account_id)"/>
103                                     <field name="name"/>
104                                     <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" widget="float_time"/>
105                                     <field name="to_invoice" widget="selection"/>
106                                     <field invisible="1" name="journal_id"/>
107                                     <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)"/>
108                                     <field invisible="1" name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
109                                     <field invisible="1" name="amount"/>
110                                     <field invisible="1" name="general_account_id"/>
111                                     <field invisible="1" name="user_id" required="1"/>
112                                 </tree>
113                                 <form string="Timesheet Lines" version="7.0">
114                                     <field name="date"/>
115                                     <field domain="[('type','=','normal'), ('state', '&lt;&gt;', 'close')]" name="account_id" on_change="on_change_account_id(account_id)"/>
116                                     <field name="name"/>
117                                     <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" widget="float_time"/>
118                                     <field name="to_invoice"/>
119                                     <field name="journal_id"/>
120                                     <field name="product_id" domain="[('type','=','service')]" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
121                                     <field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
122                                     <field name="amount"/>
123                                     <field name="general_account_id"/>
124                                     <field name="user_id" required="1"/>
125                                 </form>
126                             </field>
127                             <field name="total_difference_day" widget="float_time"/>
128                             <field name="total_timesheet_day" widget="float_time"/>
129                         </page>
130                         <page string="Summary">
131                             <field colspan="4" name="period_ids" nolabel="1">
132                                 <tree colors="red:total_difference&lt;0.1;blue:total_difference&gt;=0.1" string="Period">
133                                     <field name="name"/>
134                                     <field name="total_attendance" widget="float_time"/>
135                                     <field name="total_timesheet" widget="float_time"/>
136                                     <field name="total_difference" widget="float_time"/>
137                                 </tree>
138                             </field>
139                             <group colspan="4" col="6">
140                                 <field name="total_attendance" widget="float_time"/>
141                                 <field name="total_timesheet" widget="float_time"/>
142                                 <field name="total_difference" widget="float_time"/>
143                             </group>
144                         </page>
145                     </notebook>
146                 </sheet>
147                 </form>
148             </field>
149         </record>
150
151         <record id="view_hr_timesheet_sheet_filter" model="ir.ui.view">
152             <field name="name">hr_timesheet_sheet.sheet.filter</field>
153             <field name="model">hr_timesheet_sheet.sheet</field>
154             <field name="type">search</field>
155             <field name="arch" type="xml">
156                 <search string="Search Timesheet">
157                     <group>
158                         <filter icon="terp-document-new" string="In Draft" domain="[('state','in',('draft', 'new'))]" help="Unvalidated Timesheets"/>
159                         <filter icon="terp-camera_test" string="To Approve" domain="[('state','=','confirm')]" help="Confirmed Timesheets"/>
160                         <separator orientation="vertical"/>
161                         <field name="employee_id"/>
162                         <field name="date_from"/>
163                         <field name="department_id" widget="selection"/>
164                     </group>
165                     <newline/>
166                     <group expand="0" string="Group By...">
167                         <filter string="Employees" icon="terp-personal" domain="[]" context="{'group_by':'employee_id'}"/>
168                         <filter string="Department" icon="terp-personal+" domain="[]" context="{'group_by':'department_id'}"/>
169                     </group>
170                 </search>
171             </field>
172         </record>
173
174         <record id="act_hr_timesheet_sheet_form" model="ir.actions.act_window">
175             <field name="name">Timesheets</field>
176             <field name="type">ir.actions.act_window</field>
177             <field name="res_model">hr_timesheet_sheet.sheet</field>
178             <field name="view_type">form</field>
179             <field name="view_id" eval="False"/>
180             <field name="context">{'search_default_my_timesheet':1}</field>
181             <field name="search_view_id" ref="view_hr_timesheet_sheet_filter"/>
182             <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>
183         </record>
184
185         <menuitem action="act_hr_timesheet_sheet_form" id="menu_act_hr_timesheet_sheet_form" parent="hr_attendance.menu_hr_time_tracking"
186              sequence="2" groups="base.group_hr_user,base.group_hr_manager"/>
187
188         <!--
189             Company inheritancy
190         -->
191
192         <record id="hr_timesheet_sheet_company" model="ir.ui.view">
193             <field name="name">res.company.sheet</field>
194             <field name="model">res.company</field>
195             <field name="type">form</field>
196             <field name="inherit_id" ref="base.view_company_form"/>
197             <field name="arch" type="xml">
198                 <page string="Configuration" position="inside">
199                     <separator string="Timesheets" colspan="4"/>
200                     <field name="timesheet_range"/>
201                     <field name="timesheet_max_difference"/>
202                     <newline/>
203                 </page>
204             </field>
205         </record>
206
207         <!--
208             hr.analytic.timesheet inheritancy
209         -->
210
211         <record id="hr_timesheet_line_form" model="ir.ui.view">
212             <field name="name">hr.analytic.timesheet.form</field>
213             <field name="model">hr.analytic.timesheet</field>
214             <field name="type">form</field>
215             <field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_form"/>
216             <field name="arch" type="xml">
217                 <field name="date" position="after">
218                     <field name="sheet_id" />
219                 </field>
220             </field>
221         </record>
222
223         <record id="hr_timesheet_line_search" model="ir.ui.view">
224             <field name="name">hr.analytic.timesheet.search</field>
225             <field name="model">hr.analytic.timesheet</field>
226             <field name="type">form</field>
227             <field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_search"/>
228             <field name="arch" type="xml">
229                 <field name="date" position="after">
230                     <field name="sheet_id"/>
231                 </field>
232             </field>
233         </record>
234
235         <!--
236             hr.attendance inheritancy
237         -->
238
239         <record model="ir.ui.view" id="view_hr_attendance_filter">
240             <field name="name">view_hr_attendance_filter</field>
241             <field name="model">hr.attendance</field>
242             <field name="type">search</field>
243             <field name="inherit_id" ref="hr_attendance.view_hr_attendance_filter" />
244             <field name="arch" type="xml">
245                 <field name="action" position="after">
246                     <field name="sheet_id" />
247                 </field>
248             </field>
249         </record>
250
251         <record id="view_attendance_form" model="ir.ui.view">
252             <field name="name">hr.attendance.form</field>
253             <field name="model">hr.attendance</field>
254             <field name="type">form</field>
255             <field name="inherit_id" ref="hr_attendance.view_attendance_form"/>
256             <field name="arch" type="xml">
257                 <field name="action_desc" position="after">
258                     <field name="sheet_id"/>
259                 </field>
260             </field>
261         </record>
262         <record id="view_attendance_tree" model="ir.ui.view">
263             <field name="name">hr.attendance.tree</field>
264             <field name="model">hr.attendance</field>
265             <field name="type">tree</field>
266             <field name="inherit_id" ref="hr_attendance.view_attendance_tree"/>
267             <field name="arch" type="xml">
268                 <field name="action" position="after">
269                     <field name="sheet_id"/>
270                 </field>
271             </field>
272         </record>
273         <record id="view_attendance_tree_who" model="ir.ui.view">
274             <field name="name">hr.attendance.tree</field>
275             <field name="model">hr.attendance</field>
276             <field name="type">tree</field>
277             <field name="inherit_id" ref="hr_attendance.view_attendance_who"/>
278             <field name="arch" type="xml">
279                 <field name="action" position="after">
280                     <field name="sheet_id"/>
281                 </field>
282             </field>
283         </record>
284
285         <act_window
286         context="{'search_default_sheet_id': [active_id]}"
287         id="act_hr_timesheet_sheet_sheet_by_account"
288         name="Timesheet by Account"
289         res_model="hr_timesheet_sheet.sheet.account"
290         src_model="hr_timesheet_sheet.sheet"/>
291
292         <act_window
293         context="{'search_default_sheet_id': [active_id]}"
294         id="act_hr_timesheet_sheet_sheet_by_day"
295         name="Timesheet by Day"
296         res_model="hr_timesheet_sheet.sheet.day"
297         src_model="hr_timesheet_sheet.sheet"/>
298
299         <act_window
300         context="{'search_default_sheet_id': [active_id]}"
301         id="act_hr_timesheet_sheet_sheet_2_hr_analytic_timesheet"
302         name="Timesheet Lines"
303         res_model="hr.analytic.timesheet"
304         src_model="hr_timesheet_sheet.sheet"/>
305
306
307         <act_window
308         context="{'search_default_sheet_id': [active_id]}"
309         id="act_hr_timesheet_sheet_sheet_2_hr_attendance"
310         name="Attendances"
311         res_model="hr.attendance"
312         src_model="hr_timesheet_sheet.sheet"/>
313
314         <record id="hr_timesheet_sheet_tree_simplified" model="ir.ui.view">
315             <field name="name">hr.timesheet.sheet.tree</field>
316             <field name="model">hr_timesheet_sheet.sheet</field>
317             <field name="type">tree</field>
318             <field eval="10" name="priority"/>
319             <field name="arch" type="xml">
320                 <tree colors="blue:state == 'draft';black:state in ('confirm','new');gray:state == 'done'" string="Timesheets">
321                     <field name="employee_id"/>
322                     <field name="date_from"/>
323                     <field name="date_to"/>
324                     <field name="department_id"/>
325                     <field name="total_attendance" widget="float_time"/>
326                     <field name="total_timesheet" widget="float_time"/>
327                     <field name="total_difference" widget="float_time"/>
328                     <field name="state"/>
329                 </tree>
330             </field>
331         </record>
332
333         <record id="hr_timesheet_day_tree" model="ir.ui.view">
334             <field name="name">hr.timesheet.day.tree</field>
335             <field name="model">hr_timesheet_sheet.sheet.day</field>
336             <field name="type">tree</field>
337             <field name="arch" type="xml">
338                 <tree colors="blue:total_difference&lt;0.1;red:total_difference&gt;=0.1" string="Period">
339                     <field name="name"/>
340                     <field name="total_attendance" widget="float_time" sum="Total Attendances"/>
341                     <field name="total_timesheet" widget="float_time" sum="Total Timesheet"/>
342                     <field name="total_difference" widget="float_time" sum="Total Difference"/>
343                 </tree>
344             </field>
345         </record>
346
347   <!-- Timesheet Button on Employee Form -->
348   <act_window
349            context="{'search_default_employee_id': [active_id], 'default_employee_id': active_id}"
350            id="act_hr_employee_2_hr_timesheet" name="Timesheets" res_model="hr_timesheet_sheet.sheet" src_model="hr.employee"/>
351
352     </data>
353 </openerp>