Edi Santoso
Odoo and Python Developer
drink a tea to enjoying the life

odoo inherit groups in existing menu

If you want to inherit existing groups menu do this;

This example will hide reporting menu for account, billing, and just will show for adviser

        <record id="account.menu_finance_reports" model="ir.ui.menu">
            <field name="groups_id" eval="[(6,0,[ref('account.group_account_manager')])]" />
        </record>