How to Load the Images from URL in Odoo 16

For easy client communication, a business platform should incorporate media like voice, videos, or photographs. Odoo is aware of this and encourages the use of all media on its platform. In some situations, no media is saved as an attachment. Using media with or without linking to attachments is possible with Odoo. In the database, […]

How to Load PoS Session Data to PoS Order in Odoo 16

In  Odoo 16, we can extend the functionality by adding new fields and modifying the workflows to meet the specific business requirements in POS. Adding custom models and fields was discussed earlier. In this blog, we are loading POS session (front-end) data into POS order (backend).  As an example, we want to add customer suggestions […]

How to Load the Images from URL in Odoo 15

A business platform must use media such as images, videos or audio for convenient customer communication. Knowing this, Odoo supports the use of all kinds of media on its platform. There may be use cases where any media is not saved as an attachment. Using Odoo, it is possible to use media with or without […]

How to Load JS Function in a Menu Item Click in Odoo 13

Odoo uses menu items to do actions such as view data from the database and show the result corresponding to user action. These menu items basically act as button action. This blog will discuss how to invoke a js function in a menu item click. Let’s check how the menu item calls a js action. First, you want […]

How to Load Models & Fields in the Odoo 16 PoS

In this blog post, we will explore the process of loading models and fields in POS Odoo 16. POS, or Point of Sale, is a crucial component of any business that serves as the interface between the customer and the company’s sales and inventory management systems. With the release of Odoo 16, a new version […]

How to Load JS Function in Menu Item Click in Odoo 15

Odoo is a highly extensible ERP system with a non-trivial codebase in python and javascript. Odoo has a widely arranged UI with multiple options and menus. Odoo uses both python and javascript methods to invoke actions to those menus. In this blog, we’ll be discussing how we can invoke a js function on a menu […]

How to load images from URL in Odoo 13

In Odoo, Images are stored in binary fields in databases. There is no option in Odoo to load images from the URL. We can only upload the image from the system. For Example:- from odoo import modelsclass PartnerImage(models.Model):   _inherit = res.partner’    partner_image = fields.Binary(string=Partner Image’, attachment=False) In the code above, we created a binary field […]

How To Load Demo Data In The Odoo 16 ERP

Adding demo data to our custom modules is a common need. Demo data for each Odoo model is loaded only if the option to load demo data was enabled during database creation. So, if we want to load the Demo data, we can specify it when we create the database. In this blog, We’ll go […]

How to Load Demo Data in the Odoo 15

In many cases, we may have to test and demonstrate the flow, which is not much better to use with master data. Here comes the use of Demo data which is used for only demonstration purposes. Demo data for each Odoo model is loaded only if we have enabled the option to load demo data […]

How to Load Demo Data in Odoo 17

In the world of Enterprise Resource Planning (ERP), Odoo stands out as a versatile and powerful open-source platform that allows businesses to streamline their operations, manage resources, and enhance productivity. Custom modules play a crucial role in tailoring Odoo to specific business needs, and one common requirement is the integration of demo data. Demo data […]