I wanna change something in export_data function then I wanna override BaseModel class. But really don't know how to override this? I try to copy a file file orm.py and fix import but the it not call in side this file.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
Dear Sir
it's not worked for me as seen this error
except_orm: ('ValueError', 'The class Extend_BaseModel has to have a _name attribute')
First you have to inherit the class BaseModel
and then can override the method.
Try this:
class Extend_BaseModel(BaseModel):
def export_data(self, cr, uid, ids, fields_to_export, context=None):
#Your code
#You may call super also if you want like this: super(Extend_BaseModel, self).export_data(cr, uid, ids, fields_to_export, context=context)
#Your code
Hope this will help you and solve you problem.
Thanks,
Serpent Consulting Services.
I achieve overriding BaseModel methods in V7 :
1- create a new python file my_basemodel.py
2- add your custom methods like this
from openerp.osv.orm import BaseModel
def my_method(self, cr, uid, ids, context=None):
do_somthing
BaseModel.method = my_method # Method is referring to an ORM methode (read, unlink, export_data, ...)
3- save the file and add it to __init__.py
4- Restart your server
this is called monkey patching, this way is not good. If we want to use monkey patching in Odoo. look into the hooks provided by odoo
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
3
lis 24
|
29939 | ||
|
5
sie 24
|
2559 | ||
|
0
sty 22
|
2339 | ||
|
1
gru 21
|
2718 | ||
|
0
gru 21
|
2271 |