mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
15 lines
691 B
XML
15 lines
691 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record model="ir.ui.view" id="view_department_form_inherited">
|
|
<field name="name">hr.department.form.inherited</field>
|
|
<field name="model">hr.department</field>
|
|
<field name="inherit_id" ref="hr.view_department_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//button[@name='toggle_active']" position="before">
|
|
<button class="oe_stat_button" name="project_tree_view" type="object" icon="fa-puzzle-piece">
|
|
<field string="Projects" name="project_count" widget="statinfo"/>
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo> |