[FIX] mail: invite: avoid sendign a void invite message; but cleditor produces <br> instead of a void message when deleting the widget content.

bzr revid: tde@openerp.com-20130425085256-6jpfesyhbo7qgis3
This commit is contained in:
Thibault Delavallée 2013-04-25 10:52:56 +02:00
parent 92e09ed8c4
commit ca4ccafb37
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ class invite_wizard(osv.osv_memory):
new_follower_ids = [p.id for p in wizard.partner_ids if p.id not in document.message_follower_ids]
model_obj.message_subscribe(cr, uid, [wizard.res_id], new_follower_ids, context=context)
# send an email
if wizard.message:
# send an email only if a personal message exists
if wizard.message and not wizard.message == '<br>': # when deleting the message, cleditor keeps a <br>
# add signature
user_id = self.pool.get("res.users").read(cr, uid, [uid], fields=["signature"], context=context)[0]
signature = user_id and user_id["signature"] or ''