Browse Source

[IMP] notification should be at the beginning of the body indeed

pull/289/head
Invitu 6 years ago
parent
commit
d3e01308d0
  1. 7
      mail_footer_notified_partner/models/mail_followers.py

7
mail_footer_notified_partner/models/mail_followers.py

@ -30,16 +30,17 @@ class MailNotification(models.Model):
def _notify_send(self, body, subject, recipients, **mail_values): def _notify_send(self, body, subject, recipients, **mail_values):
footer_recipients = self.env.context.get( footer_recipients = self.env.context.get(
'notified_partners', recipients) or recipients 'notified_partners', recipients) or recipients
body += self.get_additional_footer(footer_recipients)
newbody = self.get_additional_footer(footer_recipients)
newbody += body
return super(MailNotification, self).\ return super(MailNotification, self).\
_notify_send(body, subject, recipients, **mail_values)
_notify_send(newbody, subject, recipients, **mail_values)
@api.model @api.model
def get_additional_footer(self, recipients): def get_additional_footer(self, recipients):
recipients_name = [ recipients_name = [
recipient.name for recipient in recipients recipient.name for recipient in recipients
] ]
additional_footer = u'<br /><small>%s%s.</small><br />' % \
additional_footer = u'<br /><b>%s%s.</b><br />' % \
(_('Also notified: '), (_('Also notified: '),
', '.join(recipients_name)) ', '.join(recipients_name))
return additional_footer return additional_footer
Loading…
Cancel
Save