How to Use api.constrains() in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

Odoo facilitates the implementation of validations for recordsets through Python and model constraints. There are primarily two methods to enforce constraints on variants in Odoo: Python and SQL constraints. #odoo17developmentvideos Python constraints in Odoo are typically set using the class decorator api.constrains(), which accepts the field name as arguments and enforces validation conditions on the […]

Computed Fields & @api depends in Odoo 16 | Odoo Tutorials | Odoo 16 Development Tutorials – CBMS Odoo ERP

In this video, it explains about computed fields, In some cases, we need some fields whose Computation, is based on some other ones. #odootutorials #odoo16videos Odoo Provides a solution for it ie, Computed Fields.It is just like any other regular field along with an additional argument compute which can be stored directly from the database. […]

How to Define a Computed Field in Odoo 15 | Odoo Development Tutorial | Computed Field in Odoo – CBMS Odoo ERP

Odoo provides compute function which helps to calculate from some other fields. It is just like any other regular field along with an additional argument compute. #odoo15developmentvideos Video Contents 00:00 Introduction 00:27 Example 00:52 Compute Field Which can be stored directly and retrieved directly from the database. One of the common examples for the usage […]

What Is the Use of api.onchange in Odoo15 | @api.onchange Odoo15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

Odoo api.onchange decorator is used to invoke a method when a field’s value changed. It can be used to validate the data or to trigger an action. Video Contents 00:15 Introduction 00:45 Define an onchange function The function of this decorator will be called when the field value changes. Moreover, it supports only single field […]

How to Define Compute Fields and Compute Functions in Odoo15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing How to define compute fields and compute functions in odoo15 and its use cases in odoo development. #odoo15developmentvideos In Odoo, sometimes we may require special types of fields having values calculated from other fields. We may require calculated values from the same records or in the related records. #odoo15technicalvideos […]

date_utils in Odoo 15 | Date_utils Odoo Tools | Odoo 15 Technical Videos – CBMS Odoo ERP

In this video we are discussing date_utils in Odoo 15, trying out a few sets of functions among the package Date_utils provides a powerful extension to the standard DateTime module. #odootechnicalvideos This is used for getting ranges and references to different time periods, computing relative deltas (next month, next year, next Monday, last week of […]

Difference Between Compute and Onchange Fields in Odoo | Odoo Development Tutorial – CBMS Odoo ERP

In this video, we are discussing the difference between a computed field and an on-change field, how values are fetched into it, and its use cases. #odoo15videos #odooonchange #odoocompute #odoo15onchange #odoo15compute #apionchange #depends Connect With Us: ➡️Website: ➡️Email: info@cybrosys.com ➡️Twitter: ➡️LinkedIn: ➡️Facebook: ➡️Instagram: ➡️Pinterest: What is onchange function? What is compute function? What is compute […]