Skip to Content
मेन्यू
This question has been flagged
1 Reply
2901 Views

classres_user(models.Model): 

 _inherit = ['res.partner']    

  zone = fields.Selection([('N', 'Norte'), ('C', 'Centro'), ('S', 'Sur')], string='Zona comercial')

My question is because when I try to add a new field to contacts from my module visit the server me error 500?

Avatar
Discard
Best Answer


The below _inherit uses if you want to add feature to your model for example messaging or mailing

_inherit = ['model_name']


If you want to add field to model use:

_inherit = 'res.partner'

Avatar
Discard
Related Posts Replies Views Activity
2
जुल॰ 25
876
1
सित॰ 24
1474
2
अक्तू॰ 23
5600
0
अक्तू॰ 23
1730
3
सित॰ 23
2446