Category: Blog Articles
-
How To Install Custom Module on Odoo.sh
Odoo.sh is supporting usage of third party that will extend the functionality of your system. In order to achieve that, there are several steps that we should do to upload it into the system and install it. And here’s How to Install Custom Module on Odoo.sh First, locate your module file. Either you bought a […]
-
How To Create Odoo Clickable Status Bar
State in Odoo is one of the vital element or fields that represent the state of the record. This article explain to you how to create clickable status bar. How To Create Clickable State Bar in Odoo In order to make a clickable status bar, you can simply define an “options” properties in your Odoo […]
-
How To Migrate On-Premise Odoo to odoo.sh
What is Odoo.sh? Odoo.sh is a platform as a service provided by Odoo, in purpose to allows the end-users to easily test your developments, manage your feature-branches, and beta-test your features on duplicates of your customer’s production instance. This tutorial will explain how to migrate On-Premise Odoo to Odoo.sh service, as i reminding back in August […]
-
Odoo Error Installing Module : Record cannot be modified right now
Odoo Error Record cannot be modified right now: This cron task is currently being executed and may not be modified Please try again in a few minutes This kind of problem and odoo error message is happening when you tried to install an Odoo module. Regardless if you bought a new, or, created your own. […]
-
How To Disable assigned you an activity To Do Notification in Odoo
This article will cover steps how to disable to do notification in Odoo. During assigning to-do activity to certain user, we usually do something this way : Despite of assigning other user via “activity”, this annoying chat bubble is keep showing. This feature is quite unnecessary since assigned activity will be shown in the “hour” […]
-
How To Backup And Restore Large Odoo Database
Backing up Odoo Database is core of the data loss prevention action. Once you had a problem with your production build, or, having a hardware failure upon your server, you can always retrieve what you loss using your backup file. In this case, the entire Odoo database. This article will walk through on how to […]
-
How To Use Lambda Function in Odoo
A lambda function is a Python expression used within a domain expression to specify more complex filtering criteria. It allows you to define inline functions on the fly, which are not bound to a specific name like regular functions. Instead, lambda functions can be used as anonymous functions for simple operations. For example : the […]
-
How to Enable Harmonized System in Odoo
The HS Code (Also refers to Harmonized System) is a standardized numerical method of classifying traded products. It is used by customs authorities around the world to identify products when assessing duties and taxes and for gathering statistics. The HS is administrated by the World Customs Organization (WCI) and is updated every five years. In […]
-
How to Create One2Many Fields in Odoo
One2Many fields is a fields is declaration of a one-to-many relationship between two models (which also called database table). It allows us to create a link between records of one model to multiple records in another model. The best example which we use everyday in Odoo is One2many fields of order_line in sale.order model. This […]
-
How to Deploy Odoo 16 Community in Docker
In this tutorial we are going to deploy Odoo 16 Community in docker using odoo 16 docker-compose. But before we delving into it, some of you may not know what Docker is so let’s try to cover the most basic by knowing it first. What is Docker? Docker is a set of platform as a […]
-
Odoo Best Practice For Developing Your Modules
When it comes to development, it is essential to follow Odoo Best Practice that promote clean, efficient, and scalable code. That’s a general golden rule and best practice of software development, including here in Odoo ecosystem. One of the great things about Odoo is the ability to customize almost anything. The downside of this is that […]