Hello everyone
I need your help for my XML of my filters.
When I want to create a filter, I have these choices:
contains
doesn't contain
is equal to
is not equal to
...........
If I want my filter contains certain words, what is the symbol that I have to use instead of '=' in domain :
<record id="filters_lapagept.creations_au_pt" model="ir.filters">
<field name="name">Créations Au fil du tempS</field>
<field name="model_id">stock.location</field>
<field name="user_id" eval="False"/>
<field name="domain">[('company','=','Créations Au')]</field>
</record>
I tried 'in' but it gives me an error message
what is my mistake?
Thank you for your help.