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.
Esta pregunta ha sido marcada
2
Respuestas
7987
Vistas
If you want to select users on Contacts (res.partner) you can use the domain [["user_ids","!=",False]]
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
Inscribirse| Publicaciones relacionadas | Respuestas | Vistas | Actividad | |
|---|---|---|---|---|
|
|
3
sept 23
|
4694 | ||
|
|
0
may 23
|
4315 | ||
|
|
1
may 23
|
3482 | ||
|
|
1
abr 23
|
3097 | ||
|
|
2
dic 19
|
43542 |
Thank you Chris .Your answer is working .
Also this domain is working i.e domain=[('user_ids.id', '!=',False)].