How to Use the safe_eval Module in Odoo
If you read the odoo’s source code, sometimes you will find some codes that use safe_eval module. Have you wonder, what is safe_eval ? And usually used for what ? If we read the odoo’s source code, actually, safe_eval is just an implementation of python’s built-in eval function/module. Of course with some modifications. If you …. Read More
Easy Odoo Domain Writing Tricks Using the odoo.osv.expression Module
On my previous article, I have written that : write domain on odoo is not easy. Therefore we must have some tricks to handle it. In that article, I have written one of the tricks I usually use, which is to change the domain to SQL Query, so we can analyze it. This time I …. Read More
Odoo JavaScript Programming Tutorial (Part Five) – How to Use the Dialog/Popup
This article is the fifth part of my odoo javascript programming tutorial series. If you haven’t read the first to the fourth part, I suggest you to read them first. You should find the link at the bottom of this page. In this article, I will discuss how to use odoo’s javascript dialogs. A dialog …. Read More
Read Odoo Source Code : How to Solve the Translation that is Only Partially Loaded
This article is the third part of my Reading Odoo Source Code tutorial series. In the Reading Odoo Source Code tutorial series, I usually write about tips and tricks on how to solve a problem when creating an odoo module, by reading the odoo source code directly. With the hope that it can make us …. Read More
Odoo JavaScript Programming Tutorial (Part Four) – Field Attribute and Ajax Call
This article is the fourth part of my odoo javascript programming tutorial series. If you haven’t read the first to the third part of the series, I recommend reading those articles first. You should find the link to those articles at the bottom of this page. In this part, I will discuss how to add …. Read More
A Library for Backup and Restore Big Odoo Database
In my previous article I have discussed how to backup and restore a large odoo database, by modifying the odoo controller. After some time using this method in several projects, it turns out that this method has weaknesses. Sometimes the backup file cannot be restored. The backup file seems to be corrupt, so it failed …. Read More
How to Solve Odoo Studio New Field is Missing Problem in Odoo Enterprise v14
Did you know that in the odoo enterprise version we can change the odoo’s views by drag and drop? By installing a module named web_studio or commonly called by Odoo Studio we can change the odoo’s views easily. Just open the view that we want to change, open odoo studio, then change the view through …. Read More
Odoo Edit Access Right and Its Problems
An application generally must be able to do the CRUD (Create, Read, Update, Delete) operations, as well as odoo. As far as my experience as an odoo programmer, Update or Edit access rights sometimes can be an annoying problem, along with the complexity of the client needs. Why ? This is my experience regarding the …. Read More
How to Prevent Auto Save When User Click on Any Odoo Button
In odoo, if we are editing a document, then click on a button, even though it’s not the Save button, odoo will immediately save the document, then the method of the button that we click will be executed by odoo. The document will change to read-only mode, which means that we can no longer edit …. Read More
How to Solve Ripcord Could Not Access Odoo Error
In my previous article, I have written about how to call the odoo API using the ripcord library in the PHP programming language. But, it turns out that this library has some bugs, especially if the API calling process is too long. In my case, I have to send a large amount of data to …. Read More