How to use delete_domain method in tempest

Best Python code snippet using tempest_python

res_company.py

Source: res_company.py Github

copy

Full Screen

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()...

Full Screen

Full Screen

Blogs

Check out the latest blogs from LambdaTest on this topic:

Best 13 Tools To Test JavaScript Code

Unit and functional testing are the prime ways of verifying the JavaScript code quality. However, a host of tools are available that can also check code before or during its execution in order to test its quality and adherence to coding standards. With each tool having its unique features and advantages contributing to its testing capabilities, you can use the tool that best suits your need for performing JavaScript testing.

13 Best Java Testing Frameworks For 2023

The fact is not alien to us anymore that cross browser testing is imperative to enhance your application’s user experience. Enhanced knowledge of popular and highly acclaimed testing frameworks goes a long way in developing a new app. It holds more significance if you are a full-stack developer or expert programmer.

Webinar: Move Forward With An Effective Test Automation Strategy [Voices of Community]

The key to successful test automation is to focus on tasks that maximize the return on investment (ROI), ensuring that you are automating the right tests and automating them in the right way. This is where test automation strategies come into play.

[LambdaTest Spartans Panel Discussion]: What Changed For Testing &#038; QA Community And What Lies Ahead

The rapid shift in the use of technology has impacted testing and quality assurance significantly, especially around the cloud adoption of agile development methodologies. With this, the increasing importance of quality and automation testing has risen enough to deliver quality work.

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run tempest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful