Best Python code snippet using localstack_python
res_company.py
Source:res_company.py
1# -*- coding: utf-8 -*-2# Part of Odoo. See LICENSE file for full copyright and licensing details.3from odoo import fields, models4from odoo.osv.expression import OR5class ResCompany(models.Model):6 _inherit = 'res.company'7 hr_attendance_overtime = fields.Boolean(string="Count Extra Hours")8 overtime_start_date = fields.Date(string="Extra Hours Starting Date")9 overtime_company_threshold = fields.Integer(string="Tolerance Time In Favor Of Company", default=0)10 overtime_employee_threshold = fields.Integer(string="Tolerance Time In Favor Of Employee", default=0)11 def write(self, vals):12 search_domain = False # Overtime to generate13 delete_domain = False # Overtime to delete14 overtime_enabled_companies = self.filtered('hr_attendance_overtime')15 # Prevent any further logic if we are disabling the feature16 is_disabling_overtime = False17 # If we disable overtime18 if 'hr_attendance_overtime' in vals and not vals['hr_attendance_overtime'] and overtime_enabled_companies:19 delete_domain = [('company_id', 'in', overtime_enabled_companies.ids)]20 vals['overtime_start_date'] = False21 is_disabling_overtime = True22 start_date = vals.get('hr_attendance_overtime') and vals.get('overtime_start_date')23 # Also recompute if the threshold have changed24 if not is_disabling_overtime and (25 start_date or 'overtime_company_threshold' in vals or 'overtime_employee_threshold' in vals):26 for company in self:27 # If we modify the thresholds only28 if start_date == company.overtime_start_date and \29 (vals.get('overtime_company_threshold') != company.overtime_company_threshold) or\30 (vals.get('overtime_employee_threshold') != company.overtime_employee_threshold):31 search_domain = OR([search_domain, [('employee_id.company_id', '=', company.id)]])32 # If we enabled the overtime with a start date33 elif not company.overtime_start_date and start_date:34 search_domain = OR([search_domain, [35 ('employee_id.company_id', '=', company.id),36 ('check_in', '>=', start_date)]])37 # If we move the start date into the past38 elif start_date and company.overtime_start_date > start_date:39 search_domain = OR([search_domain, [40 ('employee_id.company_id', '=', company.id),41 ('check_in', '>=', start_date),42 ('check_in', '<=', company.overtime_start_date)]])43 # If we move the start date into the future44 elif start_date and company.overtime_start_date < start_date:45 delete_domain = OR([delete_domain, [46 ('company_id', '=', company.id),47 ('date', '<', start_date)]])48 res = super().write(vals)49 if delete_domain:50 self.env['hr.attendance.overtime'].search(delete_domain).unlink()51 if search_domain:52 self.env['hr.attendance'].search(search_domain)._update_overtime()...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!