From e1dcf886129f47fdc121f121df15a2c4724bb0e2 Mon Sep 17 00:00:00 2001 From: "Merel Geens (mege)" <mege@odoo.com> Date: Mon, 28 Aug 2023 11:28:26 +0200 Subject: [PATCH] [FIX] odoo: import was broken for non-admin users A check was added to prevent importing records with prefixes of existing modules: https://github.com/odoo/odoo/pull/130825 . This queries the known modules, but non-admin users don't have access to that by default, causing the import to fail for them. Allow the module query regardless of access rights. closes odoo/odoo#133300 Signed-off-by: Raphael Collet <rco@odoo.com> --- odoo/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo/models.py b/odoo/models.py index 6dbdc1827df3..ca7e3dfb9c39 100644 --- a/odoo/models.py +++ b/odoo/models.py @@ -4245,7 +4245,7 @@ Fields: _logger.warning("Creating record %s in module %s.", data['xml_id'], module) if self.env.context.get('import_file'): - existing_modules = self.env['ir.module.module'].search([]).mapped('name') + existing_modules = self.env['ir.module.module'].sudo().search([]).mapped('name') for data in to_create: xml_id = data.get('xml_id') if xml_id: -- GitLab