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.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
2
Replies
5739
Tampilan
If you want to select users on Contacts (res.partner) you can use the domain [["user_ids","!=",False]]
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
3
Sep 23
|
2583 | ||
|
0
Mei 23
|
2586 | ||
|
1
Mei 23
|
2071 | ||
|
1
Apr 23
|
1878 | ||
|
2
Des 19
|
40984 |
Thank you Chris .Your answer is working .
Also this domain is working i.e domain=[('user_ids.id', '!=',False)].