31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from markupsafe import Markup
|
|
from odoo import api, fields, models, _
|
|
from odoo.tools.mail import is_html_empty
|
|
|
|
|
|
class CrmLeadLost(models.TransientModel):
|
|
_name = 'crm.lead.lost'
|
|
_description = 'Get Lost Reason'
|
|
|
|
lead_ids = fields.Many2many('crm.lead', string='Leads')
|
|
lost_reason_id = fields.Many2one('crm.lost.reason', 'Lost Reason')
|
|
lost_feedback = fields.Html(
|
|
'Closing Note', sanitize=True
|
|
)
|
|
|
|
def action_lost_reason_apply(self):
|
|
"""Mark lead as lost and apply the loss reason"""
|
|
self.ensure_one()
|
|
if not is_html_empty(self.lost_feedback):
|
|
self.lead_ids._track_set_log_message(
|
|
Markup('<div style="margin-bottom: 4px;"><p>%s:</p>%s<br /></div>') % (
|
|
_('Lost Comment'),
|
|
self.lost_feedback
|
|
)
|
|
)
|
|
res = self.lead_ids.action_set_lost(lost_reason_id=self.lost_reason_id.id)
|
|
return res
|