mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-27 05:12:01 +02:00
19.0 vanilla
This commit is contained in:
parent
a1137a1456
commit
e1d89e11e3
2789 changed files with 1093187 additions and 605897 deletions
|
|
@ -4,15 +4,39 @@
|
|||
<!-- views -->
|
||||
|
||||
<record id="view_attendance_tree" model="ir.ui.view">
|
||||
<field name="name">hr.attendance.tree</field>
|
||||
<field name="name">hr.attendance.list</field>
|
||||
<field name="model">hr.attendance</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Employee attendances" editable="bottom" sample="1">
|
||||
<field name="employee_id"/>
|
||||
<list
|
||||
js_class="attendance_list_view"
|
||||
string="Employee attendances"
|
||||
decoration-success="color == 10"
|
||||
decoration-danger="color == 1"
|
||||
duplicate="false">
|
||||
<header>
|
||||
<button class="btn-secondary" string="Approve Extra Hours" name="action_approve_overtime" type="object"/>
|
||||
<button class="btn-secondary" string="Refuse Extra Hours" name="action_refuse_overtime" type="object"/>
|
||||
</header>
|
||||
<field name="employee_id" widget="many2one_avatar_employee"/>
|
||||
<field name="check_in"/>
|
||||
<field name="check_out"/>
|
||||
<field name="worked_hours" string="Work Hours" widget="float_time"/>
|
||||
</tree>
|
||||
<field name="check_out" options="{}"/>
|
||||
<field name="worked_hours" string="Worked Hours" widget="float_time"/>
|
||||
<field name="overtime_hours" string="Worked Extra Hours" optional="show" widget="float_time"/>
|
||||
<field name="validated_overtime_hours" string="Extra Hours" optional="show" widget="float_time"/>
|
||||
<field name="overtime_status" optional="hidden" widget="badge" decoration-warning="overtime_status == 'to_approve'" decoration-success="overtime_status == 'approved'" decoration-danger="overtime_status == 'refused'"/>
|
||||
<field name="in_mode" string="Input Mode (In)" optional="hidden"/>
|
||||
<field name="out_mode" string="Input Mode (Out)" optional="hidden"/>
|
||||
<field name="in_latitude" string="Latitude (In)" optional="hidden"/>
|
||||
<field name="in_longitude" string="Longitude (In)" optional="hidden"/>
|
||||
<field name="in_location" string="Location (In)" optional="hidden"/>
|
||||
<field name="out_latitude" string="Latitude (Out)" optional="hidden"/>
|
||||
<field name="out_longitude" string="Longitude (Out)" optional="hidden"/>
|
||||
<field name="out_location" string="Location (Out)" optional="hidden"/>
|
||||
<field name="create_uid" optional="hidden"/>
|
||||
<field name="write_uid" optional="hidden"/>
|
||||
<field name="write_date" optional="hidden"/>
|
||||
<field name="color" column_invisible="1"/>
|
||||
</list>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
|
@ -21,24 +45,15 @@
|
|||
<field name="model">hr.attendance</field>
|
||||
<field name="arch" type="xml">
|
||||
<kanban class="o_kanban_mobile" sample="1">
|
||||
<field name="employee_id"/>
|
||||
<field name="check_in"/>
|
||||
<field name="check_out"/>
|
||||
<templates>
|
||||
<t t-name="kanban-box">
|
||||
<div t-attf-class="oe_kanban_global_click">
|
||||
<div>
|
||||
<img t-att-src="kanban_image('hr.employee', 'avatar_128', record.employee_id.raw_value)" t-att-title="record.employee_id.value" t-att-alt="record.employee_id.value" class="oe_kanban_avatar o_image_24_cover mr4"/>
|
||||
<span class="o_kanban_record_title">
|
||||
<strong><t t-esc="record.employee_id.value"/></strong>
|
||||
</span>
|
||||
</div>
|
||||
<hr class="mt4 mb8"/>
|
||||
<div class="o_kanban_record_subtitle">
|
||||
<i class="fa fa-calendar" aria-label="Period" role="img" title="Period"></i>
|
||||
<t t-esc="record.check_in.value"/>
|
||||
- <t t-esc="record.check_out.value"/>
|
||||
</div>
|
||||
<t t-name="card">
|
||||
<field name="employee_id" widget="many2one_avatar_employee" options="{'display_avatar_name': True}" class="fs-5 fw-bold mb-2"/>
|
||||
<hr class="mt4 mb8"/>
|
||||
<div>
|
||||
<i class="fa fa-calendar me-1" aria-label="Period" role="img" title="Period"></i>
|
||||
<field name="check_in" /> - <field name="check_out" />
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
|
|
@ -50,18 +65,203 @@
|
|||
<field name="name">hr.attendance.form</field>
|
||||
<field name="model">hr.attendance</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Employee attendances">
|
||||
<form string="Employee attendances" duplicate="false">
|
||||
<header>
|
||||
<field
|
||||
name="overtime_status"
|
||||
widget="statusbar"
|
||||
readonly="1"
|
||||
options="{'clickable': '1'}"
|
||||
invisible="not overtime_status"/>
|
||||
</header>
|
||||
<sheet>
|
||||
<group>
|
||||
<field name="employee_id"/>
|
||||
<field name="check_in"/>
|
||||
<field name="check_out"/>
|
||||
<group colspan="2">
|
||||
<group col="1" name="group_employee">
|
||||
<field
|
||||
id="employee_no_officer"
|
||||
name="employee_id"
|
||||
widget="many2one_avatar_employee"
|
||||
readonly="1"
|
||||
groups="!hr_attendance.group_hr_attendance_officer"/>
|
||||
<field
|
||||
id="employee_no_manager"
|
||||
name="employee_id"
|
||||
widget="many2one_avatar_employee"
|
||||
domain="[
|
||||
('attendance_manager_id', '=', uid),
|
||||
('company_id', 'in', allowed_company_ids),
|
||||
]"
|
||||
groups="hr_attendance.group_hr_attendance_officer,!hr_attendance.group_hr_attendance_user"/>
|
||||
<field
|
||||
id="employee_manager"
|
||||
name="employee_id"
|
||||
widget="many2one_avatar_employee"
|
||||
domain="[
|
||||
('company_id', 'in', allowed_company_ids),
|
||||
]"
|
||||
groups="hr_attendance.group_hr_attendance_user"/>
|
||||
<field name="check_in" options="{'rounding': 0}" readonly="not is_manager"/>
|
||||
<field name="check_out" options="{'rounding': 0}" placeholder="Currently Working" readonly="not is_manager"/>
|
||||
</group>
|
||||
<group col="2">
|
||||
<field name="worked_hours" string="Worked Time" widget="float_time"/>
|
||||
<field name="overtime_hours" widget="float_time" string="Worked Extra Hours" invisible="overtime_hours == validated_overtime_hours"/>
|
||||
<label for="validated_overtime_hours"/>
|
||||
<div>
|
||||
<field
|
||||
name="validated_overtime_hours"
|
||||
style="width:5ch"
|
||||
widget="float_time"
|
||||
readonly="1"/>
|
||||
<!-- TODO algin icons baseline with text -->
|
||||
<button
|
||||
class="oe_stat_button flex-shrink-0"
|
||||
string=" "
|
||||
help="Approve all overtimes for the same employee and date"
|
||||
invisible="not is_manager or overtime_status not in ['to_approve', 'refused'] or not overtime_status"
|
||||
name="action_approve_overtime"
|
||||
icon="fa-check"
|
||||
type="object"
|
||||
groups="hr_attendance.group_hr_attendance_officer"/>
|
||||
<button
|
||||
class="oe_stat_button flex-shrink-0"
|
||||
string=" "
|
||||
help="Refuse all overtimes for the same employee and date"
|
||||
invisible="not is_manager or overtime_status not in ['to_approve', 'approved'] or not overtime_status"
|
||||
name="action_refuse_overtime"
|
||||
icon="fa-times"
|
||||
type="object"
|
||||
groups="hr_attendance.group_hr_attendance_officer"/>
|
||||
</div>
|
||||
</group>
|
||||
</group>
|
||||
<separator string="Check In"/>
|
||||
<group name="check_in_group" colspan="2">
|
||||
<group>
|
||||
<group>
|
||||
<field name="in_mode"/>
|
||||
<field name="in_ip_address" invisible="in_mode == 'manual' or not device_tracking_enabled"/>
|
||||
<field name="in_browser" invisible="in_mode == 'manual' or not device_tracking_enabled"/>
|
||||
</group>
|
||||
</group>
|
||||
<group invisible="in_mode == 'manual' or not device_tracking_enabled">
|
||||
<field name="in_location"/>
|
||||
<label for="in_latitude" string="GPS Coordinates"/>
|
||||
<div>
|
||||
<div class="o_row">
|
||||
<span>
|
||||
<field name="in_latitude"/>
|
||||
</span>,
|
||||
<span>
|
||||
<field name="in_longitude" nolabel="1"/>
|
||||
</span>
|
||||
</div>
|
||||
<button
|
||||
name="action_in_attendance_maps"
|
||||
type="object"
|
||||
class="btn btn-link ps-0 pt-0 pb-2"
|
||||
icon="oi-arrow-right"
|
||||
string="View on Maps"
|
||||
colspan="2"/>
|
||||
</div>
|
||||
</group>
|
||||
</group>
|
||||
<separator string="Check Out" name="check_out_separator" invisible="not check_out"/>
|
||||
<group colspan="2" name="check_out_group" invisible="not check_out">
|
||||
<group>
|
||||
<group>
|
||||
<field name="out_mode" string="Mode"/>
|
||||
<field name="out_ip_address" string="IP Address" invisible="in_mode == 'manual' or not device_tracking_enabled"/>
|
||||
<field name="out_browser" string="Browser" invisible="in_mode == 'manual' or not device_tracking_enabled"/>
|
||||
</group>
|
||||
</group>
|
||||
<group invisible="out_mode == 'manual' or not device_tracking_enabled">
|
||||
<field name="out_location"/>
|
||||
<label for="out_latitude" string="GPS Coordinates"/>
|
||||
<div>
|
||||
<div class="o_row">
|
||||
<span>
|
||||
<field name="out_latitude"/>
|
||||
</span>,
|
||||
<span>
|
||||
<field name="out_longitude" nolabel="1"/>
|
||||
</span>
|
||||
</div>
|
||||
<button
|
||||
name="action_out_attendance_maps"
|
||||
type="object"
|
||||
class="btn btn-link ps-0 pt-0 pb-2"
|
||||
icon="oi-arrow-right"
|
||||
string="View on Maps"
|
||||
colspan="2"/>
|
||||
</div>
|
||||
</group>
|
||||
</group>
|
||||
</group>
|
||||
<notebook invisible="not overtime_status">
|
||||
<page string="Overtime Details">
|
||||
<field name="linked_overtime_ids">
|
||||
<list editable="bottom">
|
||||
<field name="rule_ids" widget="many2many_tags" readonly="1"/>
|
||||
<field name="duration" widget="float_time" readonly="1"/>
|
||||
<field name="manual_duration" widget="float_time" readonly="0"/>
|
||||
<field name="amount_rate" widget="percentage"/>
|
||||
<field name="status" widget="badge" readonly="1" decoration-warning="status == 'to_approve'" decoration-success="status == 'approved'" decoration-danger="status == 'refused'"/>
|
||||
<button
|
||||
class="oe_stat_button"
|
||||
string="Approve"
|
||||
invisible="not is_manager or status not in ['to_approve', 'refused']"
|
||||
name="action_approve"
|
||||
icon="fa-check"
|
||||
type="object"
|
||||
groups="hr_attendance.group_hr_attendance_officer"/>
|
||||
<button
|
||||
class="oe_stat_button"
|
||||
string="Refuse"
|
||||
invisible="not is_manager or status not in ['to_approve', 'approved']"
|
||||
name="action_refuse"
|
||||
icon="fa-times"
|
||||
type="object"
|
||||
groups="hr_attendance.group_hr_attendance_officer"/>
|
||||
</list>
|
||||
</field>
|
||||
</page>
|
||||
</notebook>
|
||||
</sheet>
|
||||
<chatter/>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_view_graph" model="ir.ui.view">
|
||||
<field name="name">hr.attendance.graph</field>
|
||||
<field name="model">hr.attendance</field>
|
||||
<field name="arch" type="xml">
|
||||
<graph string="Worked Hours" type="line" stacked="0" sample="1">
|
||||
<field name="employee_id" type="row"/>
|
||||
<field name="check_in" interval="week" type="col"/>
|
||||
<field name="overtime_hours" widget="float_time"/>
|
||||
<field name="worked_hours" type="measure" widget="float_time"/>
|
||||
</graph>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_view_pivot" model="ir.ui.view">
|
||||
<field name="name">hr.attendance.pivot</field>
|
||||
<field name="model">hr.attendance</field>
|
||||
<field name="arch" type="xml">
|
||||
<pivot string="Worked Hours">
|
||||
<field name="employee_id" type="row"/>
|
||||
<field name="check_in" type="col" interval="month"/>
|
||||
<field name="worked_hours" type="measure" widget="float_time"/>
|
||||
<field name="expected_hours" type="measure" widget="float_time"/>
|
||||
<field name="overtime_hours" string="Difference" type="measure" widget="float_time"/>
|
||||
<field name="validated_overtime_hours" string="Balance" type="measure" widget="float_time"/>
|
||||
</pivot>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_view_filter" model="ir.ui.view">
|
||||
<field name="name">hr_attendance_view_filter</field>
|
||||
<field name="model">hr.attendance</field>
|
||||
|
|
@ -69,14 +269,34 @@
|
|||
<search string="Hr Attendance Search">
|
||||
<field name="employee_id"/>
|
||||
<field name="department_id" operator="child_of"/>
|
||||
<field name="check_in"/>
|
||||
<filter string="My Attendances" name="myattendances" domain="[('employee_id.user_id', '=', uid)]" />
|
||||
<filter string="My Team" name="myteam" domain="[('employee_id.parent_id.user_id', '=', uid)]"/>
|
||||
<separator/>
|
||||
<filter string="Check In" name="check_in_filter" date="check_in" default_period="last_month"/>
|
||||
<filter string="No Check Out" name="nocheckout" domain="[('check_out', '=', False)]" />
|
||||
<group expand="0" string="Group By">
|
||||
<filter string="At Work" name="nocheckout" domain="[('check_out', '=', False)]" />
|
||||
<filter string="Errors" name="errors"
|
||||
domain="['|', ('worked_hours', '>=', 16), '&', ('check_out', '=', False), ('check_in', '<=', '-1d')]"/>
|
||||
<filter string="Automatically Checked-Out" name="auto_check"
|
||||
domain="[('out_mode', '=', 'auto_check_out')]"/>
|
||||
<separator/>
|
||||
<filter string="Date" name="check_in_filter" date="check_in"/>
|
||||
<separator/>
|
||||
<filter
|
||||
string="Active Employees"
|
||||
name="activeemployees"
|
||||
domain="[('employee_id.active', '=', True)]"/>
|
||||
<filter
|
||||
string="Archived Employees"
|
||||
name="archivedemployees"
|
||||
domain="[('employee_id.active', '=', False)]"/>
|
||||
<separator invisible="1"/>
|
||||
<filter string="Last 3 Months" invisible="1" name="last_three_months" domain="[('check_in','>=', '-3m')]"/>
|
||||
<group>
|
||||
<filter string="Employee" name="employee" context="{'group_by': 'employee_id'}"/>
|
||||
<filter string="Check In" name="groupby_name" context="{'group_by': 'check_in'}"/>
|
||||
<filter string="Check Out" name="groupby_check_out" context="{'group_by': 'check_out'}"/>
|
||||
<filter string="Department" name="departement" context="{'group_by': 'department_id'}"/>
|
||||
<filter string="Manager" name="manager" context="{'group_by': 'manager_id'}"/>
|
||||
<filter string="Method" name="groupby_mode_in" context="{'group_by': 'in_mode'}"/>
|
||||
<filter string="Date" name="groupby_name" context="{'group_by': 'check_in:month'}"/>
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
|
|
@ -84,75 +304,195 @@
|
|||
|
||||
<!-- actions -->
|
||||
|
||||
<record id="action_try_kiosk" model="ir.actions.server">
|
||||
<field name="name">Try kiosk</field>
|
||||
<field name="model_id" ref="hr_attendance.model_hr_attendance"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">action = model.action_try_kiosk()</field>
|
||||
</record>
|
||||
|
||||
<record id="action_load_demo_data" model="ir.actions.server">
|
||||
<field name="name">Load demo data</field>
|
||||
<field name="model_id" ref="hr_attendance.model_hr_attendance"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">action = model._load_demo_data()</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_action" model="ir.actions.act_window">
|
||||
<field name="name">Attendances</field>
|
||||
<field name="path">attendances</field>
|
||||
<field name="res_model">hr.attendance</field>
|
||||
<field name="view_mode">tree,kanban,form</field>
|
||||
<field name="context">{"search_default_today":1}</field>
|
||||
<field name="search_view_id" ref="hr_attendance_view_filter" />
|
||||
<field name="group_ids" eval="[(4, ref('hr_attendance.group_hr_attendance_officer'))]"/>
|
||||
<field name="view_mode">list,form</field>
|
||||
<field name="context">
|
||||
{
|
||||
"search_default_groupby_name": 1,
|
||||
"search_default_employee": 2
|
||||
}
|
||||
</field>
|
||||
<field name="search_view_id" ref="hr_attendance_view_filter"/>
|
||||
<field name="help">
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_reporting" model="ir.actions.act_window">
|
||||
<field name="name">Attendances</field>
|
||||
<field name="res_model">hr.attendance</field>
|
||||
<field name="path">attendance-report</field>
|
||||
<field name="view_mode">pivot,graph</field>
|
||||
<field name="search_view_id" ref="hr_attendance_view_filter"/>
|
||||
<field name="context">
|
||||
{
|
||||
"search_default_employee": 2,
|
||||
"search_default_activeemployees": 1,
|
||||
"search_default_last_three_months": 1
|
||||
}
|
||||
</field>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_empty_folder">
|
||||
No attendance records found
|
||||
</p><p>
|
||||
The attendance records of your employees will be displayed here.
|
||||
The attendance reporting of your employees will be displayed here.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_action_employee" model="ir.actions.act_window">
|
||||
<field name="name">Attendances</field>
|
||||
<record id="hr_attendance_management_view_filter" model="ir.ui.view">
|
||||
<field name="name">hr_attendance_management_view_filter</field>
|
||||
<field name="model">hr.attendance</field>
|
||||
<field name="arch" type="xml">
|
||||
<search>
|
||||
<field name="employee_id"/>
|
||||
<field name="department_id" operator="child_of"/>
|
||||
<filter string="My Attendances" name="myattendances" domain="[('employee_id.user_id', '=', uid)]" />
|
||||
<filter string="My Team" name="myteam" domain="[('employee_id.parent_id.user_id', '=', uid)]"/>
|
||||
<separator/>
|
||||
<filter string="To Approve" name="to_approve" domain="[('overtime_status','=', 'to_approve')]"/>
|
||||
<filter string="Approved" name="approved" domain="[('overtime_status','=', 'approved')]"/>
|
||||
<filter string="Refused" name="refused" domain="[('overtime_status','=', 'refused')]"/>
|
||||
<separator/>
|
||||
<filter string="Date" name="check_in_filter" date="check_in"/>
|
||||
<separator/>
|
||||
<filter
|
||||
string="Active Employees"
|
||||
name="activeemployees"
|
||||
domain="[('employee_id.active', '=', True)]"/>
|
||||
<filter
|
||||
string="Archived Employees"
|
||||
name="archivedemployees"
|
||||
domain="[('employee_id.active', '=', False)]"/>
|
||||
<group>
|
||||
<filter string="Employee" name="employee" context="{'group_by': 'employee_id'}"/>
|
||||
<filter string="Date" name="groupby_date" context="{'group_by': 'check_in'}"/>
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_attendance_tree_management" model="ir.ui.view">
|
||||
<field name="name">hr.attendance.list</field>
|
||||
<field name="model">hr.attendance</field>
|
||||
<field name="arch" type="xml">
|
||||
<list string="Employee attendances" create="0">
|
||||
<header>
|
||||
<button class="btn-secondary" string="Approve" name="action_approve_overtime" type="object"/>
|
||||
<button class="btn-secondary" string="Refuse" name="action_refuse_overtime" type="object"/>
|
||||
</header>
|
||||
<field name="employee_id" widget="many2one_avatar_employee" readonly="1"/>
|
||||
<field name="check_in" readonly="1"/>
|
||||
<field name="check_out" readonly="1"/>
|
||||
<field name="worked_hours" readonly="1" string="Worked Time" widget="float_time"/>
|
||||
<field name="overtime_hours" string="Worked Extra Hours" widget="float_time"/>
|
||||
<field name="validated_overtime_hours" readonly="overtime_status == 'refused'" string="Extra Hours" widget="float_time"/>
|
||||
<button
|
||||
class="oe_stat_button"
|
||||
string="Approve"
|
||||
invisible="not is_manager or overtime_status not in ['to_approve', 'refused']"
|
||||
groups="hr_attendance.group_hr_attendance_officer"
|
||||
name="action_approve_overtime"
|
||||
icon="fa-check"
|
||||
type="object"/>
|
||||
<button
|
||||
class="oe_stat_button"
|
||||
string="Refuse"
|
||||
invisible="not is_manager or overtime_status not in ['to_approve', 'approved']"
|
||||
groups="hr_attendance.group_hr_attendance_officer"
|
||||
name="action_refuse_overtime"
|
||||
icon="fa-times"
|
||||
type="object"/>
|
||||
</list>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_management_action" model="ir.actions.act_window">
|
||||
<field name="name">Management</field>
|
||||
<field name="res_model">hr.attendance</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="context">{'create': False}</field>
|
||||
<field name="view_mode">list,form</field>
|
||||
<field name="search_view_id" ref="hr_attendance_management_view_filter"/>
|
||||
<field name="view_id" ref="view_attendance_tree_management"/>
|
||||
<field name="context">
|
||||
{
|
||||
"search_default_to_approve" : 1,
|
||||
"search_default_activeemployees": 1,
|
||||
}
|
||||
</field>
|
||||
<field name="domain">[('check_out', '!=', False)]</field>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_empty_folder">
|
||||
No attendance records to display
|
||||
No attendance records found
|
||||
</p><p>
|
||||
The attendance records of your employees will be displayed here.
|
||||
The attendance reporting of your employees will be displayed here.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_action_overview" model="ir.actions.act_window">
|
||||
<field name="name">Attendances</field>
|
||||
<field name="res_model">hr.attendance</field>
|
||||
<field name="view_mode">tree</field>
|
||||
<field name="context">{'create': False}</field>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_empty_folder">
|
||||
No attendance records to display
|
||||
</p><p>
|
||||
Your attendance records will be displayed here.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_action_kiosk_mode" model="ir.actions.client">
|
||||
<field name="name">Attendances</field>
|
||||
<field name="tag">hr_attendance_kiosk_mode</field>
|
||||
<field name="target">fullscreen</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_action_my_attendances" model="ir.actions.client">
|
||||
<field name="name">Attendance</field>
|
||||
<field name="tag">hr_attendance_my_attendances</field>
|
||||
<field name="target">main</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_attendance_action_greeting_message" model="ir.actions.client">
|
||||
<field name="name">Message</field>
|
||||
<field name="tag">hr_attendance_greeting_message</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.actions.server" id="open_kiosk_url">
|
||||
<field name="name">Open Kiosk Url</field>
|
||||
<field name="model_id" ref="hr_attendance.model_res_company"/>
|
||||
<field name="path">attendance-kiosk</field>
|
||||
<field name="binding_model_id" ref="hr_attendance.model_res_company"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
action = model._action_open_kiosk_mode()
|
||||
</field>
|
||||
<field name="group_ids" eval="[(4, ref('hr_attendance.group_hr_attendance_user'))]"/>
|
||||
</record>
|
||||
|
||||
<!-- Menus -->
|
||||
|
||||
<menuitem id="menu_hr_attendance_root" name="Attendances" sequence="205" groups="hr_attendance.group_hr_attendance,hr_attendance.group_hr_attendance_kiosk" web_icon="hr_attendance,static/description/icon.svg"/>
|
||||
<menuitem id="menu_hr_attendance_root" name="Attendances" sequence="205" groups="hr_attendance.group_hr_attendance_officer" web_icon="hr_attendance,static/description/icon.png"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_my_attendances" name="Check In / Check Out" parent="menu_hr_attendance_root" sequence="1" groups="hr_attendance.group_hr_attendance" action="hr_attendance_action_my_attendances"/>
|
||||
<menuitem id="menu_action_open_form" name="Kiosk Mode" action="open_kiosk_url" parent="menu_hr_attendance_root" sequence="10" groups="hr_attendance.group_hr_attendance_user"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_attendances_overview" name="Attendances" parent="menu_hr_attendance_root" sequence="1" groups="hr_attendance.group_hr_attendance" action="hr_attendance_action_overview"/>
|
||||
<menuitem
|
||||
id="menu_hr_attendance_reporting"
|
||||
name="Reporting"
|
||||
parent="menu_hr_attendance_root"
|
||||
sequence="15"
|
||||
groups="hr_attendance.group_hr_attendance_officer"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_kiosk_no_user_mode" name="Kiosk Mode" parent="menu_hr_attendance_root" sequence="10" groups="hr_attendance.group_hr_attendance_kiosk" action="hr_attendance_action_kiosk_mode"/>
|
||||
<menuitem
|
||||
id="menu_hr_attendance_attendance_reporting"
|
||||
name="Attendances"
|
||||
action="hr_attendance_reporting"
|
||||
parent="menu_hr_attendance_reporting"
|
||||
sequence="10"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_overview" name="Overview" parent="menu_hr_attendance_root" sequence="5" groups="hr_attendance.group_hr_attendance_officer"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_view_dashboard" name="Dashboard" action="hr_attendance_action" parent="menu_hr_attendance_overview" sequence="1"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_employee" name="Employees" parent="menu_hr_attendance_overview" action="hr.open_view_employee_list_my" groups="hr_attendance.group_hr_attendance_officer" sequence="2"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_view_attendances_management" name="Management" parent="menu_hr_attendance_root" sequence="6" groups="hr_attendance.group_hr_attendance_officer" action="hr_attendance_management_action"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_configuration" name="Configuration" parent="menu_hr_attendance_root" sequence="99" groups="hr_attendance.group_hr_attendance_manager"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_onboarding" name="Onboarding" action="action_try_kiosk" parent="menu_hr_attendance_configuration" sequence="100" groups="hr.group_hr_user"/>
|
||||
|
||||
<menuitem id="menu_hr_attendance_view_attendances" name="Attendances" parent="menu_hr_attendance_root" sequence="10" groups="hr_attendance.group_hr_attendance_user" action="hr_attendance_action"/>
|
||||
</odoo>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue