You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
813 B
20 lines
813 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!--Inherit Documents super button for hr_employee button-->
|
|
<record id="view_employee_form" model="ir.ui.view">
|
|
<field name="name">
|
|
hr.employee.view.form.inherit.employee.documents.expiry
|
|
</field>
|
|
<field name="model">hr.employee</field>
|
|
<field name="inherit_id" ref="hr.view_employee_form"/>
|
|
<field name="arch" type="xml">
|
|
<div class="oe_button_box" position="inside">
|
|
<button class="oe_stat_button" name="document_view"
|
|
type="object" icon="fa-list-ol">
|
|
<field string="Documents" name="document_count"
|
|
widget="statinfo"/>
|
|
</button>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|