diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/crm/models/crm_lost_reason.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/crm/models/crm_lost_reason.py')
| -rw-r--r-- | addons/crm/models/crm_lost_reason.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/addons/crm/models/crm_lost_reason.py b/addons/crm/models/crm_lost_reason.py new file mode 100644 index 00000000..4b848acb --- /dev/null +++ b/addons/crm/models/crm_lost_reason.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models, _ + + +class LostReason(models.Model): + _name = "crm.lost.reason" + _description = 'Opp. Lost Reason' + + name = fields.Char('Description', required=True, translate=True) + active = fields.Boolean('Active', default=True) + leads_count = fields.Integer('Leads Count', compute='_compute_leads_count') + + def _compute_leads_count(self): + lead_data = self.env['crm.lead'].with_context(active_test=False).read_group([('lost_reason', 'in', self.ids)], ['lost_reason'], ['lost_reason']) + mapped_data = dict((data['lost_reason'][0], data['lost_reason_count']) for data in lead_data) + for reason in self: + reason.leads_count = mapped_data.get(reason.id, 0) + + def action_lost_leads(self): + return { + 'name': _('Leads'), + 'view_mode': 'tree,form', + 'domain': [('lost_reason', 'in', self.ids)], + 'res_model': 'crm.lead', + 'type': 'ir.actions.act_window', + 'context': {'create': False, 'active_test': False}, + } |
