Odoo18-Base/addons/hr_skills_slides/views/hr_employee_views.xml
2025-03-10 11:12:23 +07:00

28 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="hr_employee_view_form" model="ir.ui.view">
<field name="name">hr.employee.view.form.inherit.resume.slides</field>
<field name="model">hr.employee</field>
<field name="priority" eval="45" />
<field name="inherit_id" ref="hr.view_employee_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='line_type_id']" position="after">
<field name="course_url" invisible="1"/>
</xpath>
<xpath expr="//field[@name='company_country_code']" position="after">
<field name="user_id" invisible="1"/>
</xpath>
<xpath expr="//div[@name='button_box']" position="inside">
<button name="action_open_courses"
class="oe_stat_button"
groups="website_slides.group_website_slides_officer"
icon="fa-graduation-cap"
type="object"
attrs="{'invisible': [('user_id', '=', False)]}">
<field name="courses_completion_text" widget="statinfo" string="Courses"/>
</button>
</xpath>
</field>
</record>
</odoo>