i have a many2many relationship with res.partner.i want to filter those records which are attached with user that means all the users which has partner ids will be filtered from res.partner .Any idea please.Thanks in advance.
i have a many2many relationship with res.partner.i want to filter those records which are attached with user that means all the users which has partner ids will be filtered from res.partner .Any idea please.Thanks in advance.
If you want to select users on Contacts (res.partner) you can use the domain [["user_ids","!=",False]]
| 相关帖文 | 回复 | 查看 | 活动 | |
|---|---|---|---|---|
|
3
9月 23
|
4858 | |||
|
0
5月 23
|
4484 | |||
|
|
1
5月 23
|
3630 | ||
|
1
4月 23
|
3285 | |||
|
2
12月 19
|
43713 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
Thank you Chris .Your answer is working .
Also this domain is working i.e domain=[('user_ids.id', '!=',False)].