mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-24 12:12:03 +02:00
15 lines
396 B
Python
15 lines
396 B
Python
# Copyright (C) 2017-Today: Odoo Community Association (OCA)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrEmployee(models.Model):
|
|
_inherit = "hr.employee"
|
|
|
|
language_ids = fields.One2many(
|
|
"hr.employee.language",
|
|
"employee_id",
|
|
string="Languages",
|
|
help="Languages of this employee",
|
|
)
|