Hello, I have two questions about filters in Odoo 8.
1) Accidentally, I have deleted a favorite filter. How can I restore it?
2) I have added a filter by code and I can see this in the admin user, but not in the other users. How can I set the user permissions for the filter?
This is the filter code
<record id="agrupar_por_chofer" model="ir.filters">
<field name="name">Agrupar por chofer</field>
<field name="model_id">sale.order</field>
<field name="domain">[]</field>
<field name="create_uid" eval="False"/>
<field name="context">{'group_by': ['chofer']}</field>
</record>