Is there a way of searching out text in the logged notes of the crm pipeline?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- सीआरएम
- e-Commerce
- लेखांकन
- इन्वेंटरी
- PoS
- Project
- MRP
This question has been flagged
1
Reply
2919
Views
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.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
जून 24
|
1419 | ||
|
1
मार्च 21
|
3046 | ||
|
2
अग॰ 25
|
374 | ||
|
1
जुल॰ 25
|
501 | ||
|
2
मई 25
|
1422 |
Thanks, all I have to do now is learn how to implement that.