Is there a way of searching out text in the logged notes of the crm pipeline?
คำถามนี้ถูกตั้งค่าสถานะ
1
ตอบกลับ
4069
มุมมอง
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.
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อ| Related Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
|---|---|---|---|---|
|
|
1
มิ.ย. 24
|
3085 | ||
|
|
1
มี.ค. 21
|
4406 | ||
|
|
3
พ.ค. 26
|
1142 | ||
|
|
0
ก.พ. 26
|
1762 | ||
|
|
2
ส.ค. 25
|
2799 |
Thanks, all I have to do now is learn how to implement that.