How to Create a Sequence Number in Odoo 17 | Odoo 17 Technical Videos | Odoo 17 Development Tutorial – CBMS Odoo ERP

In Odoo, a sequence number serves as a unique identifier for records within specific models, ensuring each entry is distinct and sequentially ordered. This tutorial explores the creation and customization of sequence numbers in Odoo 17, focusing on their application in sales orders, purchases, and invoices. Discover how to personalize sequences with options like prefixing, […]

How to Add a Domain for a Field in Odoo 17 | Odoo 17 Development Tutorial | Odoo 17 Technical Videos – CBMS Odoo ERP

In Odoo 17, domains for fields act as powerful tools for filtering records displayed or permitted within a particular field based on specific criteria. This capability aids in refining selections and streamlining options for users, enhancing the overall user experience and efficiency. Domains enable the definition of rules that restrict the data visible or selectable […]

How to Make a Field Storable in Odoo 17 | Odoo 17 Technical Videos | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo 17, to make a field storable, set store=True when defining it. By default, fields are storable unless set to store=False. Storable fields ensure data persistence across sessions and server restarts, crucial for maintaining data integrity and retrieval. However, computed or related fields are not stored by default (store=False) unless explicitly specified as store=True. […]

How to Render Data to the Browser in Odoo 17 | Render Data to the Browser | Odoo 17 Technical Videos – CBMS Odoo ERP

This video covers the case of how we can pass the data to the browser, which can be done with the help of controllers. Controllers serve as intermediaries between the front-end of a web application and its back-end. They interpret requests made by the browser and determine how to respond, often by retrieving data from a […]

How to Add Existing Field in One2Many Tree View in Odoo 16 | Odoo 16 Technical Videos – CBMS Odoo ERP

In this video tutorial, we will explore how to enhance the functionality of your Odoo application by adding an existing One2Many tree view. #odoo16 #odoodevelopment #odootutorials We’ll cover the step-by-step process of identifying the target model, locating the relevant tree view definition, and incorporating the One2Many field into the existing view. Connect With Us: ————————————— […]

How to Solve Singleton Error in Odoo 16 | Odoo 16 Technical Videos | How to Resolve Singleton Error – CBMS Odoo ERP

A singleton error refers to an issue that occurs when attempting to create multiple instances of a class or object that is designed to have only one instance throughout the lifetime of an application. #odoo16 #odoodevelopment Singletons are commonly used in software development to ensure that there is only one instance of a particular object […]

How to Create Sequence Numbers in Odoo 16 | Odoo Technical Videos | Odoo Development Tutorial – CBMS Odoo ERP

A sequence is a unique number that helps to differentiate each record. Each record has its own sequence. #odoo16 #odootutorials Video Chapters 00:00 Introduction 01:17 Sequence number 03:41 Create Function 06:46 Sequence Creating In odoo we can see for each sale order, purchase, and invoice they have its own sequence number. so In this video, […]

How to use _name_seach function in Odoo 16 | Odoo 16 Technical Videos | Name Search Function in Odoo – CBMS Odoo ERP

Name search function is an Odoo ORM method that is responsible for searching specific records by some field values in a relational field. #odootutorials This video discusses how to use name_search() method in Odoo16 and its use case in Odoo development. #odoodevelopment #odoo16 Connect With Us: —————————- ➡️ Website: ➡️ Email: info@cybrosys.com ➡️ Twitter: ➡️ […]

Module Structure in Odoo 16 | Odoo 16 Development Tutorials | Odoo 16 Technical Videos – CBMS Odoo ERP

Each odoo module has a set of elements. In this video, describes about the structure of a module and elements inside a Module such as __init__,__manifest__, business objects, view, and corresponding security files, and so on. #odoo16vidoes #odoodevelopment #odootutorials Video Chapters 00:00 Introduction 01:02 _iinit__,__manifest__ 02:38 Controllers 02:58 Data,demo Files 03:19 I18n Files 03:42 Models […]