mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
8 lines
174 B
Python
8 lines
174 B
Python
from odoo import fields, models
|
|
|
|
|
|
class HrWorkEntryType(models.Model):
|
|
_inherit = 'hr.work.entry.type'
|
|
|
|
allow_timesheet = fields.Boolean(string='Allow on Timesheet')
|