Is there a way of searching out text in the logged notes of the crm pipeline?
Esta pergunta foi sinalizada
1
Responder
4080
Visualizações
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.
Está gostando da discussão? Não fique apenas lendo, participe!
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscrever-se| Publicações relacionadas | Respostas | Visualizações | Atividade | |
|---|---|---|---|---|
|
|
1
jun. 24
|
3093 | ||
|
|
1
mar. 21
|
4406 | ||
|
|
3
mai. 26
|
1164 | ||
|
|
0
fev. 26
|
1779 | ||
|
|
2
ago. 25
|
2814 |
Thanks, all I have to do now is learn how to implement that.