Reputation: 11
Could any one help me to change the name of the menu called Partner Ledger
in accounting->Reports->PDF Reports-->Partner Ledger
.
Upvotes: 0
Views: 683
Reputation: 26738
You can use menuitem
tag with the same id
(use external id) and do not forget to specify its parent menu (if there is one), because the menu looses his parent after upgrading the module:
<menuitem name="Custom Partner ledger"
id="account.menu_account_partner_ledger"
parent="account.next_id_22"/>
A better way to do it (without specifying the parent menu) is to use record
tag:
<record model="ir.ui.menu" id="account.menu_account_partner_ledger">
<field name="name">Custom Partner ledger</field>
</record>
Upvotes: 1
Reputation: 1675
Settings -> Technical -> UserInterface -> MenuItems
Upvotes: 1