İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
7399 Görünümler

Hi,
I have created a user group, for which I want to give readonly permissions. So if the User with that group tries to edit any of the records in odoo, I want to raise an AccessError(A warning). If there is any base function, which can be overriden to make these ?


kindly Regards,
Muhsin K


Avatar
Vazgeç
En İyi Yanıt

Hello Muhsin,

You can add a constraint on the field using api.constraint.

Please see below piece of code for the same:

@api.constraint('field_name')
def check_group_access(self):
if self.env.user.has_group('account.group_account_invoice'):
raise AccessError(_("You don't have the access rights to edit this."))

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Avatar
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
2
Mar 24
2371
0
Haz 17
3344
2
Mar 24
5011
0
Şub 21
4636
1
Haz 23
4063