[FIX] mail: change copy call to copy_data to avoid resending email during duplication (opw 607295)

bzr revid: mat@openerp.com-20140505094329-vr7h4c92i43ezob4
This commit is contained in:
Jacques-Etienne Baudoux 2014-05-05 11:43:29 +02:00 committed by Martin Trigaux
parent 2f7ac6838d
commit a918e89995
1 changed files with 2 additions and 2 deletions

View File

@ -316,14 +316,14 @@ class mail_thread(osv.AbstractModel):
fol_obj.unlink(cr, SUPERUSER_ID, fol_ids, context=context)
return res
def copy(self, cr, uid, id, default=None, context=None):
def copy_data(self, cr, uid, id, default=None, context=None):
# avoid tracking multiple temporary changes during copy
context = dict(context or {}, mail_notrack=True)
default = default or {}
default['message_ids'] = []
default['message_follower_ids'] = []
return super(mail_thread, self).copy(cr, uid, id, default=default, context=context)
return super(mail_thread, self).copy_data(cr, uid, id, default=default, context=context)
#------------------------------------------------------
# Automatically log tracked fields