65 lines
3.6 KiB
Python
65 lines
3.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from flectra import _, api, fields, models
|
|
|
|
|
|
class Invite(models.TransientModel):
|
|
""" Wizard to invite partners (or channels) and make them followers. """
|
|
_name = 'mail.wizard.invite'
|
|
_description = 'Invite wizard'
|
|
|
|
@api.model
|
|
def default_get(self, fields):
|
|
result = super(Invite, self).default_get(fields)
|
|
user_name = self.env.user.name_get()[0][1]
|
|
model = result.get('res_model')
|
|
res_id = result.get('res_id')
|
|
if self._context.get('mail_invite_follower_channel_only'):
|
|
result['send_mail'] = False
|
|
if 'message' in fields and model and res_id:
|
|
model_name = self.env['ir.model']._get(model).display_name
|
|
document_name = self.env[model].browse(res_id).name_get()[0][1]
|
|
message = _('<div><p>Hello,</p><p>%s invited you to follow %s document: %s.</p></div>') % (user_name, model_name, document_name)
|
|
result['message'] = message
|
|
elif 'message' in fields:
|
|
result['message'] = _('<div><p>Hello,</p><p>%s invited you to follow a new document.</p></div>') % user_name
|
|
return result
|
|
|
|
res_model = fields.Char('Related Document Model', required=True, index=True, help='Model of the followed resource')
|
|
res_id = fields.Integer('Related Document ID', index=True, help='Id of the followed resource')
|
|
partner_ids = fields.Many2many('res.partner', string='Recipients', help="List of partners that will be added as follower of the current document.")
|
|
channel_ids = fields.Many2many('mail.channel', string='Channels', help='List of channels that will be added as listeners of the current document.',
|
|
domain=[('channel_type', '=', 'channel')])
|
|
message = fields.Html('Message')
|
|
send_mail = fields.Boolean('Send Email', default=True, help="If checked, the partners will receive an email warning they have been added in the document's followers.")
|
|
|
|
@api.multi
|
|
def add_followers(self):
|
|
email_from = self.env['mail.message']._get_default_from()
|
|
for wizard in self:
|
|
Model = self.env[wizard.res_model]
|
|
document = Model.browse(wizard.res_id)
|
|
|
|
# filter partner_ids to get the new followers, to avoid sending email to already following partners
|
|
new_partners = wizard.partner_ids - document.message_partner_ids
|
|
new_channels = wizard.channel_ids - document.message_channel_ids
|
|
document.message_subscribe(new_partners.ids, new_channels.ids)
|
|
|
|
model_name = self.env['ir.model']._get(wizard.res_model).display_name
|
|
# send an email if option checked and if a message exists (do not send void emails)
|
|
if wizard.send_mail and wizard.message and not wizard.message == '<br>': # when deleting the message, cleditor keeps a <br>
|
|
message = self.env['mail.message'].create({
|
|
'subject': _('Invitation to follow %s: %s') % (model_name, document.name_get()[0][1]),
|
|
'body': wizard.message,
|
|
'record_name': document.name_get()[0][1],
|
|
'email_from': email_from,
|
|
'reply_to': email_from,
|
|
'model': wizard.res_model,
|
|
'res_id': wizard.res_id,
|
|
'no_auto_thread': True,
|
|
})
|
|
new_partners.with_context(auto_delete=True)._notify(message, force_send=True, send_after_commit=False, user_signature=True)
|
|
message.unlink()
|
|
return {'type': 'ir.actions.act_window_close'}
|