Hello,
I want to create filter in odoo 11 but i don't want users to remove the filter from the search bar,
i want static filter to show request created only by a user instead of showing request created by all users.
Please see my code below but users is able to remove the filter and see others request.
<filter icon = "terp-mail-message-new" string = "My Requests" name = "my_requests_filter" domain ="[('current_user', '=', uid)]"/>
<field name="context">{'search_default_my_requests_filter': 1}</field>
Any Help?