Often in Odoo development, we need to customize the current template view. In order to do that, we...
Step 1: Create a .po File File Location Place your .po file in: /your_module/i18n/es.po # choose...
Just use the command to clone only a particular branch not all branches from a repo git clone...
If you need to check if a website is installed or not in the database for odoo SELECT name,state...
In Odoo, database table names typically follow a straightforward convention: they are the underscored...
Inheritance Inheritance is a mechanism in object-oriented programming (OOP) where a new class (the...
When a Go project grows larger, it becomes necessary to access functions and variables from different...
if you want to redirect Odoo /shop page to /products ` <template...
class TuringMachine: def init(self, tape, transitions, initial_state, accept_state,...
If you're looking to set up Odoo 17 on a Windows 11 system with Python 3.12, you might face a few...
As Odoo evolves, developers gain access to powerful tools like type hinting that improve code...
Odoo: Import CSV file and write into sale order lines The method features: read an imported csv...
a wizard method to download some information of the sale order - order lines to csv file this...
how to create a Wizard with download a file and auto close assuming you already have the method to...
When developing or customizing modules in Odoo, you often need to configure fields based on specific...
Enhancing Calendar Filters in Odoo with Custom Patching In the realm of enterprise resource planning...
How to update and control permissions of an app and/or menu items using xml first of all we need...
I was trying to add a new set of permission after technical in user profile page. But I could not...
Python's extended unpacking feature, often denoted by the * operator, allows you to unpack iterable...
when you install odoo requirements.txt, you may get error as below UnicodeDecodeError:...
if you get error when running pip install -r requirements.txt as below thon38\Include...
Problem : When a user selects a product in the product field of the order line in a new sale order...
When we work with odoo, it is important with the namecases and caps. I spent like many hours to find...
Odoo, a powerful and versatile ERP system, uses various relational fields to manage data connections...
If you're working with the Odoo OWL framework and encounter the error "Uncaught SyntaxError: Cannot...
In Odoo development, there are scenarios where a Boolean field needs to be saved automatically when...
In Odoo, you may sometimes need to modify an existing email template for sending invoices. For...
To restore the database gzip file to a database, gunzip < backup_database.sql.gzip | psql -d...
How to install multiple odoo modules/apps using command line interface. .\.venv\Scripts\python.exe...
In the realm of Odoo development, understanding the intricacies of web interaction is paramount....