Best Python code snippet using tempest_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()...
Check out the latest blogs from LambdaTest on this topic:
These days, development teams depend heavily on feedback from automated tests to evaluate the quality of the system they are working on.
I think that probably most development teams describe themselves as being “agile” and probably most development teams have standups, and meetings called retrospectives.There is also a lot of discussion about “agile”, much written about “agile”, and there are many presentations about “agile”. A question that is often asked is what comes after “agile”? Many testers work in “agile” teams so this question matters to us.
I routinely come across test strategy documents when working with customers. They are lengthy—100 pages or more—and packed with monotonous text that is routinely reused from one project to another. Yawn once more— the test halt and resume circumstances, the defect management procedure, entrance and exit criteria, unnecessary generic risks, and in fact, one often-used model replicates the requirements of textbook testing, from stress to systems integration.
To understand the agile testing mindset, we first need to determine what makes a team “agile.” To me, an agile team continually focuses on becoming self-organized and cross-functional to be able to complete any challenge they may face during a project.
When working on web automation with Selenium, I encountered scenarios where I needed to refresh pages from time to time. When does this happen? One scenario is that I needed to refresh the page to check that the data I expected to see was still available even after refreshing. Another possibility is to clear form data without going through each input individually.
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!!