[FIX]: Correction on creating attachment in mail_gateway for bug 705439

bzr revid: atp@tinyerp.com-20110131053447-99ztqu5tyzn7mlce
This commit is contained in:
Atul Patel (OpenERP) 2011-01-31 11:04:47 +05:30
parent cab753423c
commit 4718957b43
1 changed files with 3 additions and 2 deletions

View File

@ -128,7 +128,7 @@ class mailgate_thread(osv.osv):
for case in cases:
attachments = []
for att in attach:
attachments.append(att_obj.create(cr, uid, {'name': att[0], 'datas': base64.encodestring(att[1])}))
attachments.append(att_obj.create(cr, uid, {'res_model':case._name,'res_id':case.id, 'name': att[0], 'datas': base64.encodestring(att[1])}))
partner_id = hasattr(case, 'partner_id') and (case.partner_id and case.partner_id.id or False) or False
if not partner_id and case._name == 'res.partner':
@ -220,11 +220,12 @@ class mailgate_message(osv.osv):
action_data = False
action_pool = self.pool.get('ir.actions.act_window')
message_pool = self.browse(cr ,uid, ids, context=context)[0]
att_ids = [x.id for x in message_pool.attachment_ids]
action_ids = action_pool.search(cr, uid, [('res_model', '=', 'ir.attachment')])
if action_ids:
action_data = action_pool.read(cr, uid, action_ids[0], context=context)
action_data.update({
'domain': [('res_id','=',message_pool.res_id),('res_model','=',message_pool.model)],
'domain': [('id','in',att_ids)],
'nodestroy': True
})
return action_data