odoo18/addons_extensions/employee_bridge/views/hr_employee_views.xml

29 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="hr_employee_view_form_bridge" model="ir.ui.view">
<field name="name">hr.employee.view.form.bridge</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_recruitment_bridge"
type="object"
class="oe_stat_button"
icon="fa-link"
groups="hr.group_hr_user"
invisible="not recruitment_bridge_count">
<field name="recruitment_bridge_count" widget="statinfo" string="Onboarding"/>
</button>
</xpath>
<xpath expr="//label[@for='user_id']" position="before">
<button string="Send JOD Form"
name="send_jod_form_to_employee"
type="object"
class="btn-primary"
groups="hr.group_hr_user"
invisible="not work_email"/>
</xpath>
</field>
</record>
</odoo>