From 0993e279c1146830950c0a09bd36ace4bbc42e73 Mon Sep 17 00:00:00 2001 From: alt-odoo <alt@odoo.com> Date: Thu, 8 Sep 2022 10:43:16 +0000 Subject: [PATCH] [FIX] iap: allow regular users to delete accounts without token Small fixup of recent commit [1]. A regular user do not have delete right on iap.account model, hence creating an access right error. We should allow him to delete accounts without token so they will be re-created afterwards. [1]:https://github.com/odoo/odoo/commit/974caef934b7a116b7375f05e047aea15ea960aa closes odoo/odoo#99817 Signed-off-by: Florian Daloze (fda) <fda@odoo.com> --- addons/iap/models/iap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/iap/models/iap.py b/addons/iap/models/iap.py index a89f501ec041..801b8c3da33b 100644 --- a/addons/iap/models/iap.py +++ b/addons/iap/models/iap.py @@ -180,7 +180,8 @@ class IapAccount(models.Model): # Flush the pending operations to avoid a deadlock. self.flush() IapAccount = self.with_env(self.env(cr=cr)) - IapAccount.search(domain + [('account_token', '=', False)]).unlink() + # Need to use sudo because regular users do not have delete right + IapAccount.search(domain + [('account_token', '=', False)]).sudo().unlink() accounts = accounts - accounts_without_token if not accounts: with self.pool.cursor() as cr: -- GitLab