Hello,
I have created a boolean filed in Res.company and I want to use the same filed of hr.employee.
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello,
I have created a boolean filed in Res.company and I want to use the same filed of hr.employee.
Thanks
Hello el mehdi,
First You can add field in res.company using _inherit
You can inherit the hr.employee model and add boolean field which is related to company.
Ex:-
class Company(models.Model):
_inherit = 'res.company'
boolean_field_com = fields.Boolean('Boolean String Company')
class Employees(models.Model):
_inherit = 'hr.employee'
boolean_field_emp = fields.Boolean('Boolean String Employee', related='company_id.boolean_field_com')
Hope it works for you.
Thanks,
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
How to add "vat" field to Sales Order Model?
Rozwiązane
|
|
1
cze 18
|
3822 | |
|
1
paź 23
|
1711 | ||
can we relate a field to a related field ?
Rozwiązane
|
|
1
mar 15
|
3566 | |
|
3
maj 25
|
1659 | ||
|
1
kwi 25
|
1251 |
Hello Mehta,
Thanks for the answer.
I try your code
i only have another boolean filed, the fields are not related.Thanks