Customer LOT/Serial Number Report in Odoo 18| Odoo 18 New Features | Odoo 18 Release| Odoo 18 Update – CBMS Odoo ERP

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

How To Update One2many Field From OnChange of Field in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

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

How to Update Client Interface ‘on change’ @api.onchange in Odoo 16 | Odoo 16 Development Tutorials – CBMS Odoo ERP

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

How to Update Client Interface ‘on change’ @api.onchange Odoo 15 | Odoo 15 onchange Method – CBMS Odoo ERP

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

How to update records in Odoo 14 | Using External API | Odoo XMLRPC – CBMS Odoo ERP

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, {}) […]