I want to change the menu name 'Sale Order' to 'Make Order'.
How can I do it?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I want to change the menu name 'Sale Order' to 'Make Order'.
How can I do it?
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
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up