17 lines
541 B
Python
17 lines
541 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import api, fields, models
|
||
|
|
||
|
|
||
|
class HrEmployee(models.Model):
|
||
|
_inherit = 'hr.employee'
|
||
|
_description = 'Employee'
|
||
|
|
||
|
timesheet_count = fields.Integer(compute='_compute_timesheet_count', string='Timesheets')
|
||
|
|
||
|
@api.multi
|
||
|
def _compute_timesheet_count(self):
|
||
|
for employee in self:
|
||
|
employee.timesheet_count = employee.env['hr_timesheet_sheet.sheet'].search_count([('employee_id', '=', employee.id)])
|