Mohammad AL-Hamalawy
Mohammad AL-Hamalawy

Reputation: 11

how do i change name of menu item (Partner Ledger)

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

Answers (2)

Kenly
Kenly

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

Hilar AK
Hilar AK

Reputation: 1675

  1. Goto Settings -> Technical -> UserInterface -> MenuItems
  2. Search Partner Ledger
  3. Rename the menuitems name. Thanks

Upvotes: 1

Related Questions