You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
3.3 KiB
68 lines
3.3 KiB
# -*- coding: utf-8 -*-
|
|
################################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Cybrosys Techno Solutions (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
################################################################################
|
|
from datetime import timedelta
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
""" Inherited res.config.settings to add new fields """
|
|
_inherit = 'res.config.settings'
|
|
|
|
schedule_attendance_downloads = fields.Boolean(string="Schedule Downloads",
|
|
config_parameter='hr_biometric_attendance.schedule_downloads',
|
|
default=False,
|
|
help='If Enabled we can '
|
|
'schedule attendance '
|
|
'downloading from '
|
|
'device')
|
|
schedule_time_interval = fields.Integer(string="Schedule Time Interval",
|
|
config_parameter='hr_biometric_attendance.schedule_time_interval',
|
|
default=1,
|
|
help='We can set Time interval '
|
|
'for the Scheduling')
|
|
schedule_time_period = fields.Selection(
|
|
selection=[('hours', 'Hours'), ('days', 'Days')],
|
|
string="Schedule Time Period",
|
|
config_parameter='hr_biometric_attendance.schedule_time_period',
|
|
default='days', help='We can set Time Period for the Scheduling')
|
|
|
|
def set_values(self):
|
|
""" Super the function to set the values from settings to the
|
|
cron.job"""
|
|
super().set_values()
|
|
if self.schedule_attendance_downloads:
|
|
self.env['ir.cron'].search(
|
|
[('name', '=', 'Schedule Attendance Downloading')]).write({
|
|
'active': True,
|
|
'interval_type': self.schedule_time_period,
|
|
'interval_number': self.schedule_time_interval,
|
|
'nextcall': fields.datetime.now() + timedelta(
|
|
hours=self.schedule_time_interval) if
|
|
self.schedule_time_period == 'hours' else
|
|
fields.datetime.now() + timedelta(
|
|
days=self.schedule_time_interval),
|
|
})
|
|
else:
|
|
self.env['ir.cron'].search(
|
|
[('name', '=', 'Schedule Attendance Downloading')]).write({
|
|
'active': False
|
|
})
|
|
|