[FIX]attachment without fname_attachment.
authorvishmita <vja@vja-desktop>
Wed, 11 Jan 2012 12:55:01 +0000 (18:25 +0530)
committervishmita <vja@vja-desktop>
Wed, 11 Jan 2012 12:55:01 +0000 (18:25 +0530)
lp bug: https://launchpad.net/bugs/909069 fixed

bzr revid: vja@vja-desktop-20120111125501-3jh2u9oyvt92ble9

addons/web/controllers/main.py

index b640587..fd8d85f 100644 (file)
@@ -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)