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