How to Extend Models Using Mixin Classes in Odoo 15 | Odoo Mixins | Odoo 15 Development Tutorial – CBMS Odoo ERP

Sometimes there is a particular feature that we want to be able to add to several different models. #odoodevelopmentvideos Video Contents 00:00 Introduction 02:16 Using of Mixing Class 03:44 Result At that time we just used to rewrite the code to all models that are not an effective way. #odoo15videos Odoo provides the Abstract model […]

How to Add a New Option in the Existing Selection Field in Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing how to add a new option in an existing selection field in odoo. #odoodevelopmentvideos Video Contents 00:10 Introduction 00:45 Adding a New Item in Selection Field #odoo15videos First, we inherit the model in which the selection field is defined. Then we redefine the field by just adding the selection_add […]

How to Remove ‘create and edit’ Options From View in Odoo 15 | Odoo Development Tutorial – CBMS Odoo ERP

In this video, we are discussing how to remove the create and edit option from view in odoo15. #odoodevelopmentvideos Video Contents 00:10 Introduction 00:40 Removing the Create and Edit Button in UI There will be certain systems when we will have to create some models to store data created from the website. #odootutorials Also if […]

How to Add Color for Kanban Record in a Notebook | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we can discuss how we can provide kanban record color in notebook Odoo. #odoo15developmentvideos Video Contents ———————— 00:00 Introduction 00:28 Checking an Example 00:40 Adding Color to Kanban There are lots of views available on Odoo. List, form, graph, pivot are some examples. Kanban is an interesting view. #odoo15tutorials In kanban, view […]

How to Count Records Using Search Count in Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

The search_count() method returns the number of records matching the search domain. This method accepts a search domain as its arguments. #odootechnicaltutorial Video Contents ————————- 00:15 Introduction 00:16 search_count function use case 00:36 using search_count function to show the number of records Syntax: Model.search_count(args) ? int Eg: self.search_count([(‘product_tmpl_id’, ‘=’, record.product_tmpl_id.id),(‘active’, ‘=’, True), ]) This returns […]