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.

18 lines
539 B

  1. # Copyright (C) 2018 - TODAY, Open Source Integrators
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  3. from odoo import api, fields, models
  4. class Agreement(models.Model):
  5. _inherit = "agreement"
  6. task_count = fields.Integer('# Tasks',
  7. compute='_compute_task_count')
  8. @api.multi
  9. def _compute_task_count(self):
  10. for ag in self:
  11. count = self.env['project.task'].search_count(
  12. [('agreement_id', '=', ag.id)])
  13. ag.task_count = count