Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
1895 Tampilan

I have a security group, and I want to apply a raise error to a button to cancel payments through a group (boolean), if the group is not activated and they try to cancel a payment, a raise error will appear where it specifies that it cannot cancel payments if you do not have access permissions.
Is this possible?
odoo 10 community, thanks!


Avatar
Buang
Jawaban Terbai

Hi,

You can create a new security group and assign this user group to the corresponding button. Once the group is assigned to the button, the button will be visible only for the users in the specified group.

by adding groups="external_of_group" to the button directly or via inheritance will do the above.


If you don't need this and button has to be visible always and has to raise warning, you can add below code to the first part of the button.

if not self.env.user.has_group('group_external_id'):
raise AccessError(_("Do not have access"))


Thanks & Regards

Walnut Software Solutions

Avatar
Buang
Penulis

Thanks!

Post Terkait Replies Tampilan Aktivitas
0
Apr 21
3679
1
Mar 15
4758
4
Agu 22
12307
0
Agu 20
3086
3
Jun 17
8148