[IMP] Remove override message_post methode

bzr revid: ggh@tinyerp.com-20130517102732-ik68fh7bfv40lmee
This commit is contained in:
Farid Ghanchi (OpenERP) 2013-05-17 15:57:32 +05:30
parent 49ea7e7f72
commit 48efb3b4d6
1 changed files with 0 additions and 9 deletions

View File

@ -92,12 +92,3 @@ class sale_order_line(osv.osv):
return super(sale_order_line, self).button_confirm(cr, uid, ids, context=context)
sale_order_line()
class event_registration(osv.osv):
_inherit = 'event.registration'
def message_post(self, cr, uid, thread_id, body='', subject=None, type='notification', subtype=None, parent_id=False, attachments=None, context=None, content_subtype='html', **kwargs):
""" Overrides mail_thread message_post so that we can set the message note when
a new registration create on the event sale.
"""
return super(event_registration, 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)