Hello everybody!
I am trying to create a search filter for the attribute of "property_product_pricelist" in the model of "res.partner"
At first my module works, but I can write anything in the search and it doesn't filter.
This is what i've done:
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="view_property_product_pricelist_customer_filter" model="ir.ui.view">
<field name="name">res.partner.search.property.product.pricelist</field>
<field name="model">res.partner</field>
<field name="type">search</field>
<field name="arch" type="xml">
<xpath expr="//search" position="inside">
<field name="property_product_pricelist"/>
</xpath>
</field>
</record>
</odoo>
The safest thing is that the error is very silly, but I do not see it.
If anyone knows something I would appreciate it very much!
Thank you very much and have a nice day!