mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-27 00:12:03 +02:00
9 lines
261 B
Python
9 lines
261 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrEmployeePublic(models.Model):
|
|
_inherit = 'hr.employee.public'
|
|
|
|
equipment_count = fields.Integer(related='employee_id.equipment_count')
|