Delegation Inheritance in Odoo 16 | Odoo 16 Development Tutorials | Odoo 16 Inheritance – CBMS Odoo ERP

The inheritance concept is used for inheriting and modifying an existing model. This video discusses about Delegation Inheritance in Odoo 16 and its use case in Odoo development. #odoo16videos #odoodevelopment #odootutorials Connect With Us: ———————- ➡️Website: ➡️Email: info@cybrosys.com ➡️Twitter: ➡️LinkedIn: ➡️Facebook: ➡️Instagram: ➡️Pinterest: #Delegation #Inheritance #Odoo #Odoo #Development #Tutorials #Odoo #Inheritance

How to Build a Custom Module in Odoo 16 | Odoo 16 Development Tutorials | Odoo 16 Videos – CBMS Odoo ERP

In this video, it explains about how to build a custom module and basic python files, models, views, and security inside a module in Odoo 16 #odoo16developmentvideos Odoo is basically a web-based open source framework. which act as a solution for all business requirements. #odoo16videos Odoo modules are a set of business logic that helps […]

How To Create Editable Tree View in Odoo 15 | Odoo Development Tutorials – CBMS Odoo ERP

In Odoo an editable tree view has much more important in creating a new record or editing an existing record. #odoo15tutorials By enabling the editable tree view a user can easily create or edit the records. #odoo15technicalvideos To convert a tree view into an editable tree view we use the editable=’bottom’ or editable=’top’ attribute. It […]

Overview of Teams & Quality Checks in Odoo 15 Quality Module | Odoo 15 Functional Tutorials – CBMS Odoo ERP

This video helps to understand an overview of Teams and Quality Checks in the Odoo 15 Quality module #odoo15videos Video Chapters ————————- 00:00 Introduction 00:37 Quality Control 01:12 Quality Checks 02:11 Create quality checks 03:57 Quality Teams 04:21 Create team One of the vital parts of a business is to check the quality of products […]

How to Handle the Recruitment Process From Your Website Using Odoo 15 ERP | Odoo 15 Tutorials – CBMS Odoo ERP

In this video, you can gain detailed knowledge on Odoo 15 Recruitment module works in recruiting a candidate by posting the required on the company website. #odoo15recruitment Video Chapters ————————- 00:00 Introduction 00:39 Create a Job Position 03:19 Configure – Job Position 04:02 Go to the Website 05:38 All Application 06:27 Create Application What makes […]

How to Show a Specific View on Action in Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing how to show a specific view on the action in Odoo development. #odootechnicalvideos Video Contents ————————- 00:10 Introduction 00:30 Specific view on an action By mentioning the Id of a record in the view_id of an act window we can show that specific view when the corresponding record action […]

How to Open a Form View on Button Click in Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

This video is about how to open a form view while clicking a button. On the button action we can return the view we need to open like this. #odootechnicalvideos #odoovidoes #odoo15developmentvideos Here we can pass our model to ‘res_model’ and the particular view to ‘view_id’ def my_button(self): return { ‘name’: “Your String”, ‘type’: ‘ir.actions.act_window’, […]