mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-23 17:12:09 +02:00
10 lines
288 B
Python
10 lines
288 B
Python
# -*- coding: utf-8 -*-
|
|
# 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"
|
|
|
|
first_contract_date = fields.Date(readonly=True, groups="base.group_user")
|