Hello,
I have created a boolean filed in Res.company and I want to use the same filed of hr.employee.
Thanks
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,
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
1
Jun 18
|
5762 | |||
|
1
Oct 23
|
3170 | |||
|
1
Mar 15
|
5286 | |||
|
2
Dec 25
|
5370 | |||
|
2
Mar 26
|
1881 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
Hello Mehta,
Thanks for the answer.
I try your code
i only have another boolean filed, the fields are not related.Thanks