Hi, I want to add a filter to search in the notes tab. I'm trying with this but i'm missing the domain so the user can put the string to search.
<record id="inherit_view_crm_case_opportunities_filter" model="ir.ui.view">
<field name="name">CRM - opportunities Search </field>
<field name="model">crm.lead</field>
<field name="inherit_id"ref="crm.view_crm_case_opportunities_filter" />
<field name="arch" type="xml">
<xpath expr="filter[@string='Description']"
position="after">
<filter string="Notas" domain="[('description', '=',?)]" />
</xpath>
</field>
</record>
Thanks.