Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
4291 Widoki

I want to add some extra fields on res partner so I decided to use inheretance with a name.

class emedical_client(osv.osv):
    _name = 'emedical.client'
    _inherit = 'res.partner'

However, this causes problem when at some point other modules want access res_partner which causes the following error

File "/opt/openerp/server/openerp/addons/base/res/res_partner.py", line 182, in _get_image result[obj.id] = tools.image_get_resized_images(obj.image) File "/opt/openerp/server/openerp/osv/orm.py", line 504, in __getattr__ raise AttributeError(e) AttributeError: 'Field image not found in browse_record(emedical.client, 7)'

how do are resolve this error?

Awatar
Odrzuć
Najlepsza odpowiedź

Hello Aleck

Just use

_inherit = 'res.partner'

if you want to inherit res.partner and want to use name then it must be like _name ='res.partner'. Giving different name is messing up here, your _name is different the _inherit which is creating the problem. 

So here you just use '_inherit' and remove '_name '

Hope this helps!!

 

Awatar
Odrzuć
Autor

Thanks but that one also comes with its own problem. actually, I tried that one first but some how, once you installed the module, you cannot install other modules like accounting, it gives me the following error RuntimeError: maximum recursion depth exceeded. from the error I can't tell which part cause the recursion

Powiązane posty Odpowiedzi Widoki Czynność
1
gru 23
17771
0
mar 15
3349
0
cze 24
1383
3
maj 24
7061
0
lut 24
854