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.
Cette question a été signalée
2
Réponses
7979
Vues
If you want to select users on Contacts (res.partner) you can use the domain [["user_ids","!=",False]]
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrire| Publications associées | Réponses | Vues | Activité | |
|---|---|---|---|---|
|
|
3
sept. 23
|
4689 | ||
|
|
0
mai 23
|
4311 | ||
|
|
1
mai 23
|
3478 | ||
|
|
1
avr. 23
|
3094 | ||
|
|
2
déc. 19
|
43527 |
Thank you Chris .Your answer is working .
Also this domain is working i.e domain=[('user_ids.id', '!=',False)].