forked from Mapan/odoo17e
20 lines
492 B
Python
20 lines
492 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ActivityReport(models.Model):
|
|
_inherit = 'crm.activity.report'
|
|
|
|
won_status = fields.Selection([
|
|
('won', 'Won'),
|
|
('lost', 'Lost'),
|
|
('pending', 'Pending'),
|
|
], string='Is Won', readonly=True)
|
|
|
|
def _select(self):
|
|
res = super(ActivityReport, self)._select()
|
|
res += ', l.won_status'
|
|
return res
|