# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import fields, models class HrEmployee(models.Model): _inherit = 'hr.employee' utilization_rate = fields.Float( 'Utilization Rate (%)', default=100.0, help="Se refiere al porcentaje de tiempo que un empleado dedica a trabajo facturable o productivo directo", groups="hr.group_hr_user" )