i've created many2many field with hr.employee in custom model,
but i need to get the ids of the selected many2many fields,
any idea how to do that ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
i've created many2many field with hr.employee in custom model,
but i need to get the ids of the selected many2many fields,
any idea how to do that ?
Hi @loay elhaj
let suppose you have created the field employee_ids in your cutom model as test.
employee_ids = fields.Many2many('hr.employee', 'employee_test_rel', 'test_id', 'emp_id', string='Employees')
to get the ids of the selected employees in many2many field, you have to do
self.employee_ids.ids
this will return a list of selected employee ids ([6,889,90] for example)
Thank you it's working,
but I'm wondering can ORM method .browse accept passing list as filter for searching ?
Yes @loay elhaj self.browse only accept LIST OF IDS or RECORD ID
[ self.browse([7, 18, 12]) OR self.browse(2) ]
| 相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
|---|---|---|---|---|
|
1
9月 23
|
2757 | |||
|
1
12月 22
|
4010 | |||
|
0
10月 21
|
3702 | |||
|
2
3月 21
|
5596 | |||
|
2
3月 21
|
4708 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.