تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
4367 أدوات العرض

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?

الصورة الرمزية
إهمال
أفضل إجابة

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!!

 

الصورة الرمزية
إهمال
الكاتب

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

المنشورات ذات الصلة الردود أدوات العرض النشاط
1
ديسمبر 23
17873
0
مارس 15
3400
0
يونيو 24
1438
3
مايو 24
7187
0
فبراير 24
887