1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/hr_appraisal_contract/models/res_company.py
2024-12-10 09:04:09 +07:00

13 lines
316 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models
class ResCompany(models.Model):
_inherit = "res.company"
@api.model
def _get_employee_start_date_field(self):
self.ensure_one()
return 'first_contract_date'