2
0
account-financial-tools/account_usability/views/view_account_group.xml
Sylvain LE GAL a1cac726b5 [MIG] account_usability from 15.0 to 16.0
- account.tax.group views : remove views as there are now included in odoo account module
- account.account.template views : port privatized views in odoo 16.0 from Odoo 15.0 CE.
- account.account.tag views : adapt to V16
- account.fiscal.position.template views : add missing fields
- account.group views : adapt to V16
- account.type views : remove as the model disappeared
- account.chart.template views : port privatized views in odoo 16.0 from Odoo 15.0 CE.
- improve documentation
- FIX : remove useless duplicated fr_FR.po file
- ADD : display again 'Show full accounting features' group that is hidden in CE release
2022-10-19 10:36:31 +02:00

34 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="view_account_group_form" model="ir.ui.view">
<field name="model">account.group</field>
<field name="inherit_id" ref="account.view_account_group_form" />
<field name="arch" type="xml">
<xpath expr="//group" position="after">
<group id="links" string="Accounts">
<field
name="account_ids"
widget="many2many_tags"
nolabel="1"
options="{'no_create_edit': True}"
colspan="2"
/>
</group>
</xpath>
</field>
</record>
<record id="account_group_action" model="ir.actions.act_window">
<field name="name">Account Groups</field>
<field name="res_model">account.group</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem
id="account_group_menu"
action="account_group_action"
sequence="50"
parent="account.account_account_menu"
/>
</odoo>