From fb7d6b2111d3ed246a16bfc846924a37a6d8fa6c Mon Sep 17 00:00:00 2001 From: vishmita Date: Wed, 11 Jan 2012 18:25:01 +0530 Subject: [PATCH] [FIX]attachment without fname_attachment. lp bug: https://launchpad.net/bugs/909069 fixed bzr revid: vja@vja-desktop-20120111125501-3jh2u9oyvt92ble9 --- addons/web/controllers/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/web/controllers/main.py b/addons/web/controllers/main.py index b6405873f80..fd8d85f9d69 100644 --- a/addons/web/controllers/main.py +++ b/addons/web/controllers/main.py @@ -1257,6 +1257,7 @@ class Binary(openerpweb.Controller): attachment_id = Model.create({ 'name': ufile.filename, 'datas': base64.encodestring(ufile.read()), + 'datas_fname': ufile.filename, 'res_model': model, 'res_id': int(id) }, context)