mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-25 15:42:01 +02:00
22 lines
744 B
XML
22 lines
744 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2024 ACSONE SA/NV
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
|
|
<record model="ir.ui.view" id="hr_department_form_view">
|
|
<field name="name">hr.department.form (in hr_department_analytic)</field>
|
|
<field name="model">hr.department</field>
|
|
<field name="inherit_id" ref="hr.view_department_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="sheet//field[@name='company_id']" position="after">
|
|
<field
|
|
name="account_analytic_id"
|
|
groups="analytic.group_analytic_accounting"
|
|
/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
|
|
</odoo>
|