|
|
@ -1,9 +1,11 @@ |
|
|
|
import openerp |
|
|
|
from openerp import api, models, fields, SUPERUSER_ID, tools |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
from openerp import SUPERUSER_ID |
|
|
|
from openerp import models |
|
|
|
from openerp import tools |
|
|
|
from openerp.osv import fields as old_fields |
|
|
|
from openerp.tools import html2plaintext |
|
|
|
from openerp.tools.translate import _ |
|
|
|
|
|
|
|
|
|
|
|
class res_partner(models.Model): |
|
|
|
_inherit = 'res.partner' |
|
|
|
_columns = { |
|
|
@ -19,6 +21,7 @@ class res_partner(models.Model): |
|
|
|
), |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class mail_notification(models.Model): |
|
|
|
_inherit = 'mail.notification' |
|
|
|
|
|
|
@ -98,7 +101,6 @@ class mail_notification(models.Model): |
|
|
|
# im_text = im_text + body.split('\n') |
|
|
|
return im_text |
|
|
|
|
|
|
|
|
|
|
|
def _notify_email(self, cr, uid, ids, message_id, force_send=False, user_signature=True, context=None): |
|
|
|
# based on addons/mail/mail_followers.py::_notify_email |
|
|
|
message = self.pool['mail.message'].browse(cr, SUPERUSER_ID, message_id, context=context) |
|
|
@ -128,7 +130,6 @@ class mail_notification(models.Model): |
|
|
|
|
|
|
|
return True |
|
|
|
|
|
|
|
|
|
|
|
def _do_notify_email(self, cr, uid, email_pids, message, force_send=False, user_signature=True, context=None): |
|
|
|
|
|
|
|
# compute email body (signature, company data) |
|
|
|