跳至內容
選單
此問題已被標幟
1 回覆
3072 瀏覽次數

Is there a way of searching out text in the logged notes of the crm pipeline?

頭像
捨棄
作者

Thanks, all I have to do now is learn how to implement that.

最佳答案

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
1615
1
3月 21
3212
2
8月 25
762
1
7月 25
722
2
5月 25
1624