Skip to Content
Menu
This question has been flagged
2 Replies
3174 Views

Hello, i am using ODOO 10 and i want to make filter the list of users for each Administrator.

Each Administrator should see only the list of users that have created. Thank you !



Avatar
Discard
Author Best Answer

Thank you Niyas, i will try it

Avatar
Discard
Author

Niyas, i have try it inside the xml tree view, but it show me this message : Field `domain_force` does not exist

So where i should put this line of domain_force ?

Best Answer

HI Zak,

For this you can  add a domain based on the user.id and create_uid for the corresponding menu item

 <field name="domain_force">[('create_uid', '=', user.id)]</field>
Avatar
Discard