콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
3114 화면

Is there a way of searching out text in the logged notes of the crm pipeline?

아바타
취소
작성자

Thanks, all I have to do now is learn how to implement that.

베스트 답변

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.


아바타
취소
관련 게시물 답글 화면 활동
1
6월 24
1710
1
3월 21
3303
2
8월 25
879
1
7월 25
874
2
5월 25
1714