Jeevachaithanyan Sivanandan

Jeevachaithanyan Sivanandan @jeevanizm

About: Software Engineer / Frontend Developer / Full Stack Developer - writes about JavaScript, Php, Python and more

Location:
United Kingdom
Joined:
Oct 8, 2023

Jeevachaithanyan Sivanandan
articles - 87 total

How to find the current page template/view ID from the dev tools?

Often in Odoo development, we need to customize the current template view. In order to do that, we...

Learn More 0 0Jul 6

How to Add Custom Translations in Odoo Using .po Files

Step 1: Create a .po File File Location Place your .po file in: /your_module/i18n/es.po # choose...

Learn More 0 0Jul 4

git clone only particular branch

Just use the command to clone only a particular branch not all branches from a repo git clone...

Learn More 0 0Jun 20

Odoo check if a module is installed or not

If you need to check if a website is installed or not in the database for odoo SELECT name,state...

Learn More 1 0May 30

Odoo Database Table Naming Quirk

In Odoo, database table names typically follow a straightforward convention: they are the underscored...

Learn More 1 0May 30

Inheritance Vs composition

Inheritance Inheritance is a mechanism in object-oriented programming (OOP) where a new class (the...

Learn More 0 0Apr 11

How to Import Packages in Go

When a Go project grows larger, it becomes necessary to access functions and variables from different...

Learn More 0 0Mar 2

odoo redirect /shop page

if you want to redirect Odoo /shop page to /products ` <template...

Learn More 1 0Feb 28

Python Program for a Turing Machine Simulator python Copy code

class TuringMachine: def init(self, tape, transitions, initial_state, accept_state,...

Learn More 0 0Dec 22 '24

Install Odoo v 17 with Python 3.12 in MSWindows 11

If you're looking to set up Odoo 17 on a Windows 11 system with Python 3.12, you might face a few...

Learn More 0 0Dec 21 '24

Boosting Code Quality in Odoo with Type Hints: Benefits Beyond Performance

As Odoo evolves, developers gain access to powerful tools like type hinting that improve code...

Learn More 0 0Nov 11 '24

Odoo: Import CSV file and write into sale order lines

Odoo: Import CSV file and write into sale order lines The method features: read an imported csv...

Learn More 3 1Oct 28 '24

Odoo : create CSV file and download

a wizard method to download some information of the sale order - order lines to csv file this...

Learn More 1 0Oct 28 '24

Odoo : how to create a Wizard with download a file and auto close

how to create a Wizard with download a file and auto close assuming you already have the method to...

Learn More 7 0Oct 28 '24

How to Configure Multiple Conditions in Odoo XML Views

When developing or customizing modules in Odoo, you often need to configure fields based on specific...

Learn More 1 0Sep 30 '24

Odoo : Patch a Javascript class

Enhancing Calendar Filters in Odoo with Custom Patching In the realm of enterprise resource planning...

Learn More 4 0Jul 16 '24

how to create new permission groups, permission category

How to update and control permissions of an app and/or menu items using xml first of all we need...

Learn More 1 0Jul 3 '24

Odoo User Permission and groups

I was trying to add a new set of permission after technical in user profile page. But I could not...

Learn More 2 0Jul 3 '24

extended unpacking in Python

Python's extended unpacking feature, often denoted by the * operator, allows you to unpack iterable...

Learn More 1 0Jun 14 '24

odoo v14 and issues with requirements.txt

when you install odoo requirements.txt, you may get error as below UnicodeDecodeError:...

Learn More 3 0Jun 14 '24

Odoo version 15 pip error

if you get error when running pip install -r requirements.txt as below thon38\Include...

Learn More 1 0Jun 13 '24

Odoo OWL Framework - extend and customize Component and Widget

Problem : When a user selects a product in the product field of the order line in a new sale order...

Learn More 17 0Jun 6 '24

OWL Odoo framework

When we work with odoo, it is important with the namecases and caps. I spent like many hours to find...

Learn More 2 1May 28 '24

Understanding One2Many Relationships in Odoo: A Comprehensive Guide with Real Use Case Example

Odoo, a powerful and versatile ERP system, uses various relational fields to manage data connections...

Learn More 3 0May 24 '24

Uncaught SyntaxError: Cannot use import statement outside a module,

If you're working with the Odoo OWL framework and encounter the error "Uncaught SyntaxError: Cannot...

Learn More 6 0May 21 '24

Leveraging force_save in Odoo for Boolean Fields Dependent on onchange Methods

In Odoo development, there are scenarios where a Boolean field needs to be saved automatically when...

Learn More 1 0May 17 '24

How to Inherit and Make Changes to an Email Template in Odoo

In Odoo, you may sometimes need to modify an existing email template for sending invoices. For...

Learn More 3 2May 15 '24

restore postgres database in Odoo

To restore the database gzip file to a database, gunzip < backup_database.sql.gzip | psql -d...

Learn More 0 0May 14 '24

Install multiple modules in Odoo using command line

How to install multiple odoo modules/apps using command line interface. .\.venv\Scripts\python.exe...

Learn More 1 0May 13 '24

Exploring the Utility of web_read in Odoo Development

In the realm of Odoo development, understanding the intricacies of web interaction is paramount....

Learn More 3 0May 8 '24