NeoVe
NeoVe

Reputation: 3897

Change menu name openerp

I want to change an openerp module menu name.

I know how to do it, i'ts actually pretty easy, but this one is a core module sale and i don't want to touch it's code, because of updates issues and stuff.

So, i'll need to inherit this view and change it's name, from another module, can i do this without a module.py or a full __init__.py file?

Just the openerp manifest file and an xml to overwrite it?

Thanks in advance!

Upvotes: 2

Views: 331

Answers (1)

OmaL
OmaL

Reputation: 5044

yes you can. you just need to create a module with two files. one is __openerp__.py with correct dependency to the base modules and an xml file for updating the menu name.

Upvotes: 3

Related Questions