flectra/addons/hr_org_chart/models/hr_employee.py
2018-01-16 02:34:37 -08:00

19 lines
613 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
from flectra import api, fields, models
class Employee(models.Model):
_name = "hr.employee"
_inherit = "hr.employee"
child_all_count = fields.Integer(
'Indirect Surbordinates Count',
compute='_compute_child_all_count', store=False)
@api.depends('child_ids.child_all_count')
def _compute_child_all_count(self):
for employee in self:
employee.child_all_count = len(employee.child_ids) + sum(child.child_all_count for child in employee.child_ids)