The Reason Why a Line Break Can Cause the Product Become Unsearchable in Odoo POS
This time I will tell you about my experience with one of the most strange, most unique, and most confusing errors that I have experienced during my career as an Odoo developer. For almost 5 years (when this article was written) I have only encountered this issue once, and it just happened a few months …. Read More
The Dilemma of Becoming an Odoo Developer
Hello, in this article I will write my opinion about the “Dilemma of Becoming an Odoo Developer”. Please remember, that this article is a personal opinion based on my experience for more than 4 years as an Odoo developer, you don’t have to agree with my opinion. This article also does not intend to speak …. 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
How to Solve Cookies Replaced by Web Browser After Redirect from Other Website
As web programmers, we cannot be separated from the Web Browser. Without a Web Browser the application that we developed would be impossible for the user to use. Unfortunately, we cannot control the Web Browser type and Web Browser version that used by our client. If the version of the Web Browser is outdated, of …. Read More
Multi Company in Odoo 13
When I wrote this article, odoo 13 was released more than 1 year ago. There is even a newer version, odoo 14. Compared to odoo 12, there are many changes in their source code, such as the removal of the account.invoice model, the removal of the @api.multi decorator, the removal of the view_type field from …. Read More
How to Show Odoo’s Chatter in a Modal
In my previous article, I wrote that if we use the oe_chatter class chatter will not appear if opened from a modal. After I looked in more detail, it turned out that why odoo doing it was on purpose. In odoo 12 if the chatter is opened from a modal, the chatter will be hidden …. Read More