Is there a way of searching out text in the logged notes of the crm pipeline?
Cette question a été signalée
1
Répondre
4076
Vues
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.
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrire| Publications associées | Réponses | Vues | Activité | |
|---|---|---|---|---|
|
|
1
juin 24
|
3089 | ||
|
|
1
mars 21
|
4406 | ||
|
|
3
mai 26
|
1162 | ||
|
|
0
févr. 26
|
1776 | ||
|
|
2
août 25
|
2809 |
Thanks, all I have to do now is learn how to implement that.