mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-24 20:12:05 +02:00
10 lines
250 B
Python
10 lines
250 B
Python
# -*- 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()
|