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

I have some field with string name Provider
In different cases i need to change Provider for another field name. How can i do it? What function i need to overwrite?
Thank's

res_pr = fields.Char(string='Provider')


Avatar
Discard
Best Answer

Lets suppose you have model A defined as below:


from odoo import fields, models, api, _

class A(models.Model):
_name = 'A'
   field_name = fields.char(string='Provider')

So you will inherit the model and override the field as below:

from odoo import fields, models, api, _
class A(models.Model):
_inherit = "A"

   field_name = fields.char(string='New Name')


Avatar
Discard
Related Posts Replies Views Activity
0
सित॰ 19
7
0
अप्रैल 18
3512
0
जुल॰ 20
7384
1
मार्च 25
1030
0
मई 17
5744