Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
4 Trả lời
7461 Lượt xem

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. 

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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...

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
5
thg 7 18
6246
2
thg 3 25
5770
5
thg 8 24
46641
2
thg 4 24
2551
3
thg 6 23
5781