summaryrefslogtreecommitdiff
path: root/addons/hr_timesheet/models/res_config_settings.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/hr_timesheet/models/res_config_settings.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/hr_timesheet/models/res_config_settings.py')
-rw-r--r--addons/hr_timesheet/models/res_config_settings.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/addons/hr_timesheet/models/res_config_settings.py b/addons/hr_timesheet/models/res_config_settings.py
new file mode 100644
index 00000000..51f2fe5e
--- /dev/null
+++ b/addons/hr_timesheet/models/res_config_settings.py
@@ -0,0 +1,38 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import api, fields, models
+
+
+class ResConfigSettings(models.TransientModel):
+ _inherit = 'res.config.settings'
+
+ module_project_timesheet_synchro = fields.Boolean("Awesome Timesheet",
+ compute="_compute_timesheet_modules", store=True, readonly=False)
+ module_project_timesheet_holidays = fields.Boolean("Record Time Off",
+ compute="_compute_timesheet_modules", store=True, readonly=False)
+ project_time_mode_id = fields.Many2one(
+ 'uom.uom', related='company_id.project_time_mode_id', string='Project Time Unit', readonly=False,
+ help="This will set the unit of measure used in projects and tasks.\n"
+ "If you use the timesheet linked to projects, don't "
+ "forget to setup the right unit of measure in your employees.")
+ timesheet_encode_uom_id = fields.Many2one('uom.uom', string="Encoding Unit",
+ related='company_id.timesheet_encode_uom_id', readonly=False,
+ help="""This will set the unit of measure used to encode timesheet. This will simply provide tools
+ and widgets to help the encoding. All reporting will still be expressed in hours (default value).""")
+ timesheet_min_duration = fields.Integer('Minimal duration', default=15, config_parameter='hr_timesheet.timesheet_min_duration')
+ timesheet_rounding = fields.Integer('Rounding up', default=15, config_parameter='hr_timesheet.timesheet_rounding')
+ is_encode_uom_days = fields.Boolean(compute='_compute_is_encode_uom_days')
+
+ @api.depends('timesheet_encode_uom_id')
+ def _compute_is_encode_uom_days(self):
+ product_uom_day = self.env.ref('uom.product_uom_day')
+ for settings in self:
+ settings.is_encode_uom_days = settings.timesheet_encode_uom_id == product_uom_day
+
+ @api.depends('module_hr_timesheet')
+ def _compute_timesheet_modules(self):
+ self.filtered(lambda config: not config.module_hr_timesheet).update({
+ 'module_project_timesheet_synchro': False,
+ 'module_project_timesheet_holidays': False,
+ })