How can I edit the search view to search in all fields (Name, City, ZIP, e.g.) of my contacts?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
1
回复
8615
查看
Create an inherited view of the res.partner.select
view and add one line per field that you like to search.
For example:
<?xml version="1.0"?>
<filter string="Country" position="after">
<filter string="City" context="{'group_by': 'city'}"/>
<field name="street" filter_domain="[('street','ilike',self)]"/>
<field name="zip" filter_domain="[('zip','ilike',self)]"/>
<field name="city" filter_domain="[('city','ilike',self)]"/>
<field name="comment" filter_domain="[('comment','ilike',self)]"/>
</filter>
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
1
7月 23
|
1859 | ||
|
2
4月 21
|
15403 | ||
|
0
12月 16
|
2566 | ||
|
5
10月 16
|
12402 | ||
|
2
11月 15
|
10564 |