Skip to Content
Menu
This question has been flagged
1 Reply
1728 Views

I want to  change the menu name 'Sale Order' to 'Make Order'.

How can I do it?

Avatar
Discard
Best Answer

Hi,

For changing the menu name either you can do it from the user interface by going into Settings -> Technical -> User Interface -> Menu Items , and search the menu and edit its name in the developer mode.

If you need to do the same from code, you can do it like this,

<record id="sale.sale_menu_root" model="ir.ui.menu">
<field name="name">Make Order</field>
</record>


Thanks

Avatar
Discard