Odoo18-Base/addons/hr_presence/models/res_company.py

11 lines
250 B
Python
Raw Permalink Normal View History

2025-03-10 11:12:23 +07:00
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = 'res.company'
hr_presence_last_compute_date = fields.Datetime()