[MERGE] mail: use opt_out parameter in notification emails and in invite emails. As notification_email_send is not present on the partner form view, and as opt_out can be used once CRM is installed, we perform a direct check in the res.partner columns to see if opt_out is present. Please remove me in 8.0 (remove opt_out and replace it by the notification parameter).

lp bug: https://launchpad.net/bugs/1099181 fixed
lp bug: https://launchpad.net/bugs/1130207 fixed

bzr revid: tde@openerp.com-20130306085232-mm8qsvy4takhk2y3
This commit is contained in:
Thibault Delavallée 2013-03-06 09:52:32 +01:00
commit 0165ff819d
2 changed files with 24 additions and 7 deletions

View File

@ -82,6 +82,11 @@ class mail_notification(osv.Model):
:param list partners_to_notify: optional list of partner ids restricting
the notifications to process
"""
# TDE FIXME HACK: as notification_email_send is not present on the partner
# form view, and as opt_out can be used once CRM is installed, we have to
# perform this ugly columns check to use the parameter
# Please remove me in 8.0 (hint: remove opt_out -> notification to 'never')
has_opt_out = self.pool.get('res.partner')._all_columns.get('opt_out')
notify_pids = []
for notification in message.notification_ids:
if notification.read:
@ -93,8 +98,8 @@ class mail_notification(osv.Model):
# Do not send to partners without email address defined
if not partner.email:
continue
# Partner does not want to receive any emails
if partner.notification_email_send == 'none':
# Partner does not want to receive any emails or is opt-out
if partner.notification_email_send == 'none' or (has_opt_out and partner.opt_out):
continue
# Partner wants to receive only emails and comments
if partner.notification_email_send == 'comment' and message.type not in ('email', 'comment'):

View File

@ -19,6 +19,7 @@
#
##############################################################################
from openerp import SUPERUSER_ID
from openerp import tools
from openerp.osv import osv
from openerp.osv import fields
@ -51,12 +52,19 @@ class invite_wizard(osv.osv_memory):
}
def add_followers(self, cr, uid, ids, context=None):
for wizard in self.browse(cr, uid, ids, context=context):
# TDE FIXME HACK: as notification_email_send is not present on the partner
# form view, and as opt_out can be used once CRM is installed, we have to
# perform this ugly columns check to use the parameter
# Please remove me in 8.0 (hint: remove opt_out -> notification to 'never')
has_opt_out = self.pool.get('res.partner')._all_columns.get('opt_out')
for wizard in self.browse(cr, SUPERUSER_ID, ids, context=context):
model_obj = self.pool.get(wizard.res_model)
document = model_obj.browse(cr, uid, wizard.res_id, context=context)
# filter partner_ids to get the new followers, to avoid sending email to already following partners
new_follower_ids = [p.id for p in wizard.partner_ids if p.id not in document.message_follower_ids]
new_followers = [p for p in wizard.partner_ids if p.id not in document.message_follower_ids]
new_follower_ids = [p.id for p in new_followers]
model_obj.message_subscribe(cr, uid, [wizard.res_id], new_follower_ids, context=context)
# send an email
@ -66,8 +74,12 @@ class invite_wizard(osv.osv_memory):
signature = user_id and user_id["signature"] or ''
if signature:
wizard.message = tools.append_content_to_html(wizard.message, signature, plaintext=True, container_tag='div')
# send mail to new followers
for follower_id in new_follower_ids:
# send mail to new followers, unless it is opt-out
# FIXME 8.0: use notification_email_send, send a wall message
# and let mail handle email notification
for follower in new_followers:
if has_opt_out and follower.opt_out:
continue
mail_mail = self.pool.get('mail.mail')
# the invite wizard should create a private message not related to any object -> no model, no res_id
mail_id = mail_mail.create(cr, uid, {
@ -77,5 +89,5 @@ class invite_wizard(osv.osv_memory):
'body_html': '%s' % wizard.message,
'auto_delete': True,
}, context=context)
mail_mail.send(cr, uid, [mail_id], recipient_ids=[follower_id], context=context)
mail_mail.send(cr, uid, [mail_id], recipient_ids=[follower.id], context=context)
return {'type': 'ir.actions.act_window_close'}