summaryrefslogtreecommitdiff
path: root/addons/hr_timesheet/views/hr_views.xml
diff options
context:
space:
mode:
Diffstat (limited to 'addons/hr_timesheet/views/hr_views.xml')
-rw-r--r--addons/hr_timesheet/views/hr_views.xml71
1 files changed, 71 insertions, 0 deletions
diff --git a/addons/hr_timesheet/views/hr_views.xml b/addons/hr_timesheet/views/hr_views.xml
new file mode 100644
index 00000000..19aaf29b
--- /dev/null
+++ b/addons/hr_timesheet/views/hr_views.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+
+ <record id="timesheet_action_from_employee" model="ir.actions.act_window">
+ <field name="name">Timesheets</field>
+ <field name="res_model">account.analytic.line</field>
+ <field name="search_view_id" ref="hr_timesheet_line_search"/>
+ <field name="domain">[('project_id', '!=', False)]</field>
+ <field name="context">{
+ 'search_default_month':1,
+ 'search_default_employee_id': [active_id],
+ 'default_employee_id': active_id
+ }</field>
+ </record>
+
+ <record id="timesheet_action_view_from_employee_list" model="ir.actions.act_window.view">
+ <field name="sequence" eval="5"/>
+ <field name="view_mode">tree</field>
+ <field name="view_id" ref="hr_timesheet_line_tree"/>
+ <field name="act_window_id" ref="timesheet_action_from_employee"/>
+ </record>
+
+ <record id="timesheet_action_view_from_employee_form" model="ir.actions.act_window.view">
+ <field name="sequence" eval="10"/>
+ <field name="view_mode">form</field>
+ <field name="view_id" ref="hr_timesheet_line_form"/>
+ <field name="act_window_id" ref="timesheet_action_from_employee"/>
+ </record>
+
+ <record id="hr_employee_view_form_inherit_timesheet" model="ir.ui.view">
+ <field name="name">hr.employee.form.timesheet</field>
+ <field name="model">hr.employee</field>
+ <field name="inherit_id" ref="hr.view_employee_form"/>
+ <field name="arch" type="xml">
+ <xpath expr="//page[@name='hr_settings']" position="inside">
+ <group>
+ <group string="Timesheets" name="timesheet" groups="hr_timesheet.group_timesheet_manager">
+ <label for="timesheet_cost"/>
+ <div>
+ <field name="timesheet_cost" class="oe_inline"/> per hour
+ <field name="currency_id" invisible="1"/>
+ </div>
+ </group>
+ </group>
+ </xpath>
+ <div name="button_box" position="inside">
+ <button class="oe_stat_button" type="action" name="%(timesheet_action_from_employee)d" icon="fa-calendar" groups="hr_timesheet.group_hr_timesheet_user">
+ <div class="o_stat_info">
+ <span class="o_stat_text">Timesheets</span>
+ </div>
+ </button>
+ </div>
+ </field>
+ </record>
+
+ <record id="hr_department_view_kanban" model="ir.ui.view">
+ <field name="name">hr.department.kanban.inherit</field>
+ <field name="model">hr.department</field>
+ <field name="inherit_id" ref="hr.hr_department_view_kanban"/>
+ <field name="groups_id" eval="[(4,ref('hr_timesheet.group_timesheet_manager'))]"/>
+ <field name="arch" type="xml">
+ <data>
+ <xpath expr="//div[hasclass('o_kanban_manage_reports')]" position="inside">
+ <a name="%(act_hr_timesheet_report)d" type="action" context="{ 'search_default_department_id': [active_id], 'default_department_id': active_id}">
+ Timesheets
+ </a>
+ </xpath>
+ </data>
+ </field>
+ </record>
+</odoo>