Skip to Content
Menu
This question has been flagged
4 Replies
14944 Views

Hello

How do I get res_partner to only show me customers and not everything under res_partner?

From a tutorial it said to add this: domain = "[("customers", "=", True)]" to <field name = "res_partner_id" />

eg: field name = "res_partner_id" domain = "[("customers", "=", True)]" />, this doesn't work. It there another syntax I should be using?


Avatar
Discard
Best Answer

In a many2one field, you could restrict the records shown by using domain in Odoo.

<field name="partner_id" domain="[('customer','=',True)]" > 

A similar case has been handled in Sales order, you could check the code in sale module.

https://github.com/odoo/odoo/blob/8.0/addons/sale/sale_view.xml#L10   

Avatar
Discard
Best Answer

Hi,

The filed name to check with is "customer" not "customers"


Avatar
Discard
Author Best Answer

Hello 

Thank you for your help.. I was using " instead of ' in the domain syntax


Avatar
Discard
Best Answer

First enable debug mode. Go to -> Sale -> Customers -> Sale & Purchase tab -> Customer. Find the technical name of customer field. Your field name in domain is wrong. You will not get any error due to the wrong name in the domain.

Technically the domain will be applied with a wrong name in it for the particular field "res_partner_id". You can view the applied domain in debug mode.


domain = "[("customer", "=", True)]" 
Avatar
Discard
Related Posts Replies Views Activity
2
May 20
3477
4
Dec 18
13946
2
Jan 24
11590
0
Nov 22
2343
1
Mar 25
1134