29 lines
958 B
Python
29 lines
958 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models, _
|
||
|
from odoo.tools.mail import is_html_empty
|
||
|
|
||
|
|
||
|
class CrmLeadLost(models.TransientModel):
|
||
|
_name = 'crm.lead.lost'
|
||
|
_description = 'Get Lost Reason'
|
||
|
|
||
|
lost_reason_id = fields.Many2one('crm.lost.reason', 'Lost Reason')
|
||
|
lost_feedback = fields.Html(
|
||
|
'Closing Note', sanitize=True
|
||
|
)
|
||
|
|
||
|
def action_lost_reason_apply(self):
|
||
|
self.ensure_one()
|
||
|
leads = self.env['crm.lead'].browse(self.env.context.get('active_ids'))
|
||
|
if not is_html_empty(self.lost_feedback):
|
||
|
leads._track_set_log_message(
|
||
|
'<div style="margin-bottom: 4px;"><p>%s:</p>%s<br /></div>' % (
|
||
|
_('Lost Comment'),
|
||
|
self.lost_feedback
|
||
|
)
|
||
|
)
|
||
|
res = leads.action_set_lost(lost_reason_id=self.lost_reason_id.id)
|
||
|
return res
|