Skip to content

Instantly share code, notes, and snippets.

@ofelix03
Last active November 5, 2022 21:13
@api.model
def create(self, vals):
try:
# if user has right permission, continue with create operation
return super(Customer, self).create(vals)
except AccessError:
raise ValidationError(_("Sorry! you don't have the right permission to create this record"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment