From d27e360768c098007d9028ed038b6c3ef6183d8b Mon Sep 17 00:00:00 2001 From: Yolann Sabaux <yosa@odoo.com> Date: Tue, 13 Sep 2022 12:00:57 +0000 Subject: [PATCH] [FIX] mail: revert upload_attachment fix Cookies should be used internally by the web UI. The server-side is not supposed to be aware of it at all. Reverts: https://github.com/odoo/odoo/pull/88745 Based on https://github.com/odoo/odoo/pull/93812 discussion. It has been decided to revert the fix to avoid further unattended behaviours. closes odoo/odoo#100075 Signed-off-by: Nicolas Lempereur (nle) <nle@odoo.com> --- addons/web/controllers/main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/addons/web/controllers/main.py b/addons/web/controllers/main.py index b6e5cf3f1fac..3b2d22f3b389 100644 --- a/addons/web/controllers/main.py +++ b/addons/web/controllers/main.py @@ -1532,9 +1532,7 @@ class Binary(http.Controller): filename = unicodedata.normalize('NFD', ufile.filename) try: - cids = request.httprequest.cookies.get('cids', str(request.env.user.company_id.id)) - allowed_company_ids = [int(cid) for cid in cids.split(',')] - attachment = Model.with_context(allowed_company_ids=allowed_company_ids).create({ + attachment = Model.create({ 'name': filename, 'datas': base64.encodebytes(ufile.read()), 'res_model': model, -- GitLab