The “Customer Lot/Serial Number Report” in Odoo 18 provides detailed information about the specific lots or serial numbers of products purchased by individual customers. This report can be useful for tracking product inventory, managing returns, and analyzing customer purchasing patterns. To access the report: Go to Inventory module. Click on Reports under the Inventory menu. […]
In Odoo, A One2many field signifies a one-to-many relationship between two models, allowing one model to have multiple related records from another model. The onChange method triggers actions when a field’s value changes, commonly used to update other fields. To update a One2many field from another field’s onChange method in Odoo, declare the One2many field to […]
Onchange mechanism helps to change the value of a field based on the change on another field using the @api.onchange decorator. Here it explains how it works #odoo16videos #odoodevelopment #odootutorials Connect With Us: ———————- ➡️Website: ➡️Email: info@cybrosys.com ➡️Twitter: ➡️LinkedIn: ➡️Facebook: ➡️Instagram: ➡️Pinterest: #Update #Client #Interface #change #api.onchange #Odoo #Odoo #Development #Tutorials
In some cases, we need to update one2many fields based on the changes happening in the other field or depending on the other field.One2many field helps to store the records on the onchange function. It can be done by (0,0,val) in the onchange method. Here, this video describes how to update one2many field from onchange […]
Learn everything you need to grow your business with Odoo, the best open-source management software to run a company, at In this video, learn how to update the list of chart of accounts. The chart of accounts in your database can be updated in batches through the export of an excel spreadsheet. Other lessons related […]
In this video, it describes about @api.onchange method on the client interface #onchangemethod @api.onchange decorator is used when the field’s value is changed. It can be used to validate data or trigger action. This method can be invoked on pseudo records that contain values of the form. #odoo15developmenttutorials Video Contents: #odoo15videos 0:00 Introduction 1:13 @api.onchange […]
Whenever we update a module in Odoo, all its XML file gets loaded and updated to the latest version of code available. So we provide a no update attribute with the data tag in our xml if we want to avoid updating to any datas or code within our xml file (say in the case […]
Records can be updated using write(), it takes a list of records to update and mapping of updated fields to values similar to create(). #odooexternalapi #xmlrpc #odooxmlrpc url = ” db = ‘test_local_enterprise_db’ username = ’14’ password = ’14’ import xmlrpc.client common = xmlrpc.client.ServerProxy(‘{}/xmlrpc/2/common’.format(url)) version = common.version() print(“version”, version) uid = common.authenticate(db, username, password, {}) […]
This video describes how you can import and update Product Data in Odoo14. You can import Product data using either Excel (.xlsx) or CSV (.csv) formats. #odoo #odooproducts #odoo14 First Go to Sales-Products-Products Open the list view and from the view select a few records and come under action- click Export. Now you can see […]