37 lines
900 B
XML
37 lines
900 B
XML
<odoo>
|
|
|
|
<record id="view_employee_form_inherit_attendance_analytics"
|
|
model="ir.ui.view">
|
|
|
|
<field name="name">
|
|
hr.employee.form.attendance.analytics
|
|
</field>
|
|
|
|
<field name="model">hr.employee</field>
|
|
|
|
<field name="inherit_id"
|
|
ref="hr.view_employee_form"/>
|
|
|
|
<field name="arch" type="xml">
|
|
|
|
<xpath expr="//div[@name='button_box']"
|
|
position="inside">
|
|
|
|
<button name="action_open_attendance_analytics"
|
|
type="object"
|
|
class="oe_stat_button"
|
|
icon="fa-calendar">
|
|
|
|
<field name="attendance_analytics_count"
|
|
string="Attendance"
|
|
widget="statinfo"/>
|
|
|
|
</button>
|
|
|
|
</xpath>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
</odoo> |