Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
4 Odpovědi
7463 Zobrazení

I have a button in (stock_picking form) that I want to hide from a certain user (I know the DB user_id but I realize that would be ugly). I tried with the invisible attribute but I dont have the user_id in the form. 


Do you have a recommended way of achieving this? Perhaps adding this user to a usergroup with a specific name, and then filtering out this group somehow in the view. 

Avatar
Zrušit
Nejlepší odpověď

Dear Adi

Try this


    @api.model
    def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
        res=super(PickingClass, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)
        if view_type != 'search' and not(self.env.user.has_group('YourModule.YourGroup')):
                root = etree.fromstring(res['arch'])
                root.set('create', 'false')
                res['arch'] = etree.tostring(root)
        return res


I hope I helped You...

Avatar
Zrušit
Nejlepší odpověď

Hello, 

you can achieve this either by fields_view_get or using the security rights.

for the security group, make one security group and assign that group on the button. then whom you assign that group, only that user can see the button.

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
5
čvc 18
6246
2
bře 25
5770
5
srp 24
46641
2
dub 24
2551
3
čvn 23
5781