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:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
2
الردود
5956
أدوات العرض
If you want to select users on Contacts (res.partner) you can use the domain [["user_ids","!=",False]]
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
3
سبتمبر 23
|
2804 | ||
|
0
مايو 23
|
2785 | ||
|
1
مايو 23
|
2196 | ||
|
1
أبريل 23
|
1988 | ||
|
2
ديسمبر 19
|
41256 |
Thank you Chris .Your answer is working .
Also this domain is working i.e domain=[('user_ids.id', '!=',False)].