author

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 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 […]