How to Lock Your Confirmed Purchase Orders in Odoo 16

The Odoo 16 Purchase module helps you manage every facet of the company’s purchases. The Odoo 16 purchasing module can be used to manage the company’s purchasing activities, including requesting quotes from vendors, making purchase orders, maintaining purchase agreements, managing vendors, managing products and their variants, and much more. Your purchase order can be protected […]

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