13 lines
374 B
Python
13 lines
374 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
resource_calendar_id = fields.Many2one(
|
|
'resource.calendar', 'Company Working Hours',
|
|
related='company_id.resource_calendar_id')
|
|
module_hr_org_chart = fields.Boolean(string="Show Organizational Chart")
|