[IMP] Removed unnecessary code in project_issue.py, fixed a small error in mail_thread

bzr revid: cbi@openerp.com-20130319103822-ss4y3na3i4hip4e0
This commit is contained in:
Chris Biersbach 2013-03-19 11:38:22 +01:00
parent 31d218cc67
commit 9e6d14a289
2 changed files with 2 additions and 4 deletions

View File

@ -927,7 +927,7 @@ class mail_thread(osv.AbstractModel):
model = context.get('thread_model', self._name) if self._name == 'mail.thread' else self._name
if model != self._name:
del context['thread_model']
return self.pool.get(model).message_post(cr, uid, thread_id, body=body, subject=subject, type=type, subtype=subtype, parent_id=parent_id, attachments=attachments, context=ctx, content_subtype=content_subtype, **kwargs)
return self.pool.get(model).message_post(cr, uid, thread_id, body=body, subject=subject, type=type, subtype=subtype, parent_id=parent_id, attachments=attachments, context=context, content_subtype=content_subtype, **kwargs)
# 1: Handle content subtype: if plaintext, converto into HTML
if content_subtype == 'plaintext':

View File

@ -563,9 +563,7 @@ class project_issue(base_stage, osv.osv):
res = super(project_issue, self).message_post(cr, uid, thread_id, body=body, subject=subject, type=type, subtype=subtype, parent_id=parent_id, attachments=attachments, context=context, content_subtype=content_subtype, **kwargs)
if thread_id:
model = context.get('thread_model', self._name)
if model == self._name:
self.write(cr, uid, thread_id, {'date_action_last': time.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT)}, context=context)
self.write(cr, uid, thread_id, {'date_action_last': time.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT)}, context=context)
return res