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:

A Detailed Guide To Xamarin Testing

Xamarin is an open-source framework that offers cross-platform application development using the C# programming language. It helps to simplify your overall development and management of cross-platform software applications.

Using ChatGPT for Test Automation

ChatGPT broke all Internet records by going viral in the first week of its launch. A million users in 5 days are unprecedented. A conversational AI that can answer natural language-based questions and create poems, write movie scripts, write social media posts, write descriptive essays, and do tons of amazing things. Our first thought when we got access to the platform was how to use this amazing platform to make the lives of web and mobile app testers easier. And most importantly, how we can use ChatGPT for automated testing.

A Complete Guide To CSS Houdini

As a developer, checking the cross browser compatibility of your CSS properties is of utmost importance when building your website. I have often found myself excited to use a CSS feature only to discover that it’s still not supported on all browsers. Even if it is supported, the feature might be experimental and not work consistently across all browsers. Ask any front-end developer about using a CSS feature whose support is still in the experimental phase in most prominent web browsers. ????

How To Handle Multiple Windows In Selenium Python

Automating testing is a crucial step in the development pipeline of a software product. In an agile development environment, where there is continuous development, deployment, and maintenance of software products, automation testing ensures that the end software products delivered are error-free.

Keeping Quality Transparency Throughout the organization

In general, software testers have a challenging job. Software testing is frequently the final significant activity undertaken prior to actually delivering a product. Since the terms “software” and “late” are nearly synonymous, it is the testers that frequently catch the ire of the whole business as they try to test the software at the end. It is the testers who are under pressure to finish faster and deem the product “release candidate” before they have had enough opportunity to be comfortable. To make matters worse, if bugs are discovered in the product after it has been released, everyone looks to the testers and says, “Why didn’t you spot those bugs?” The testers did not cause the bugs, but they must bear some of the guilt for the bugs that were disclosed.

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