You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
401 B
13 lines
401 B
from odoo import models, fields, api
|
|
|
|
|
|
class MailComposeMessage(models.TransientModel):
|
|
_inherit = 'mail.compose.message'
|
|
|
|
is_private = fields.Boolean(string='Send Internal Message')
|
|
|
|
@api.multi
|
|
def send_mail(self, auto_commit=False):
|
|
for w in self:
|
|
w.is_log = True if w.is_private else w.is_log
|
|
super(MailComposeMessage, self).send_mail(auto_commit=False)
|