Is there a way of searching out text in the logged notes of the crm pipeline?
Pertanyaan ini telah diberikan tanda
1
Balas
4078
Tampilan
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.
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
Daftar| Post Terkait | Replies | Tampilan | Aktivitas | |
|---|---|---|---|---|
|
Searching by a custom field in CRM module
Diselesaikan
|
|
1
Jun 24
|
3089 | |
|
|
1
Mar 21
|
4406 | ||
|
|
3
Mei 26
|
1162 | ||
|
|
0
Feb 26
|
1776 | ||
|
|
2
Agu 25
|
2809 |
Thanks, all I have to do now is learn how to implement that.