Is there a way of searching out text in the logged notes of the crm pipeline?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
1
回复
2973
查看
You can inherit crm.view_crm_case_opportunities_filter view and add the below:
<record id="crm_lead_view_search_notes" model="ir.ui.view">
<field name="name">crm.lead.view.search.notes</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.view_crm_case_opportunities_filter"/>
<field name="arch" type="xml">
<field name="activity_state" position="after">
<field name="message_ids" string="Notes" filter_domain="[('message_ids.body','ilike',self)]"/>
</field>
</field>
</record>
Then you can search in chatter from Search.
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
1
6月 24
|
1476 | ||
|
1
3月 21
|
3117 | ||
|
2
8月 25
|
555 | ||
|
1
7月 25
|
580 | ||
|
2
5月 25
|
1487 |
Thanks, all I have to do now is learn how to implement that.