Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
2765 Widoki

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?

Awatar
Odrzuć
Najlepsza odpowiedź

Hi, 
1- Add special context to your action
2- override _search function
3- Check if self._context.get('Your_context_here', False)
4- if exists, then add domain to args
5- When you open the view list trigged by the action, you will only see the records that verify your domain. No need to add a filter.

Hope this helps.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
0
cze 20
2537
1
cze 21
3651
1
mar 21
3254
0
sty 21
2041
0
cze 20
2903