Is there a way of searching out text in the logged notes of the crm pipeline?
Denna fråga har flaggats
1
Besvara
4073
Vyer
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.
Njuter du av diskussionen? Läs inte bara, delta också!
Skapa ett konto idag för att ta del av exklusiva funktioner och engagera dig i vår fantastiska community!
Registrera dig| Relaterade inlägg | Svar | Vyer | Verksamhet | |
|---|---|---|---|---|
|
|
1
juni 24
|
3088 | ||
|
|
1
mars 21
|
4406 | ||
|
|
3
maj 26
|
1154 | ||
|
|
0
feb. 26
|
1767 | ||
|
|
2
aug. 25
|
2806 |
Thanks, all I have to do now is learn how to implement that.