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:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
1
Odpowiedz
2915
Widoki
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.
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
Searching by a custom field in CRM module
Rozwiązane
|
|
1
cze 24
|
1407 | |
|
1
mar 21
|
3041 | ||
|
2
sie 25
|
348 | ||
|
1
lip 25
|
483 | ||
|
2
maj 25
|
1395 |
Thanks, all I have to do now is learn how to implement that.