1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/documents_hr/views/hr_employee_views.xml
2024-12-10 09:04:09 +07:00

21 lines
849 B
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.documents</field>
<field name="model">hr.employee</field>
<field name="inherit_id" ref="hr.view_employee_form"/>
<field name="priority" eval="1" />
<field name="arch" type="xml">
<xpath expr="//div[@name='button_box']" position="inside">
<button name="action_open_documents"
class="oe_stat_button"
groups="documents.group_documents_user"
icon="fa-file-text"
type="object">
<field name="document_count" widget="statinfo" string="Documents"/>
</button>
</xpath>
</field>
</record>
</odoo>