How to use delete_domain method in localstack

Best Python code snippet using localstack_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:

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.

QA Innovation &#8211; Using the senseshaping concept to discover customer needs

QA Innovation - Using the senseshaping concept to discover customer needsQA testers have a unique role and responsibility to serve the customer. Serving the customer in software testing means protecting customers from application defects, failures, and perceived failures from missing or misunderstood requirements. Testing for known requirements based on documentation or discussion is the core of the testing profession. One unique way QA testers can both differentiate themselves and be innovative occurs when senseshaping is used to improve the application user experience.

Best 23 Web Design Trends To Follow In 2023

Having a good web design can empower business and make your brand stand out. According to a survey by Top Design Firms, 50% of users believe that website design is crucial to an organization’s overall brand. Therefore, businesses should prioritize website design to meet customer expectations and build their brand identity. Your website is the face of your business, so it’s important that it’s updated regularly as per the current web design trends.

Acquiring Employee Support for Change Management Implementation

Enterprise resource planning (ERP) is a form of business process management software—typically a suite of integrated applications—that assists a company in managing its operations, interpreting data, and automating various back-office processes. The introduction of a new ERP system is analogous to the introduction of a new product into the market. If the product is not handled appropriately, it will fail, resulting in significant losses for the business. Most significantly, the employees’ time, effort, and morale would suffer as a result of the procedure.

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 localstack 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