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