14 lines
496 B
Python
14 lines
496 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'
|
|
|
|
timesheet_max_difference = fields.Float(string='Timesheet allowed difference(Hours)',
|
|
help="Allowed difference in hours between the sign in/out and the timesheet " \
|
|
"computation for one sheet. Set this to 0 if you do not want any control.",
|
|
default=0.0)
|