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')
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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')
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')
Luo tili jo tänään nauttiaksesi yksinoikeusominaisuuksista ja osallistuaksesi mahtavaan yhteisöömme!
RekisteröidyAiheeseen liittyviä artikkeleita | Vastaukset | Näkymät | Toimenpide | |
---|---|---|---|---|
|
0
syysk. 19
|
7 | ||
|
0
huhtik. 18
|
3416 | ||
|
0
heinäk. 20
|
7250 | ||
|
1
maalisk. 25
|
935 | ||
|
0
toukok. 17
|
5633 |