Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
2914 Zobrazení

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

Avatar
Zrušit
Autor

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

Nejlepší odpověď

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.


Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
čvn 24
1403
1
bře 21
3038
2
srp 25
338
1
čvc 25
481
2
kvě 25
1394