How to setup Odoo 19 Development Environment using Pycharm in Ubuntu | Odoo 19 Installation – CBMS Odoo ERP

🚀 In this step-by-step tutorial, I’ll show you how to set up an Odoo 19 development environment on Ubuntu using PyCharm IDE. Whether you’re a beginner or an experienced developer, this guide will help you configure everything you need to start building and customizing Odoo modules efficiently. 🔑 What you’ll learn in this video: Installing […]

EP-34 How to Create a New Category for New User Group in Odoo 18 | Odoo 18 Development Tutorials – CBMS Odoo ERP

1. Enable Developer Mode Go to Settings → Developer Tools → Activate the developer mode. 2. Go to Groups Settings → Users & Companies → Groups Click Create. 3. Create the Group Name → e.g., “Custom Reports Access” Application → This is the category where it appears in the user form. You can select an […]

EP-28 How to Add a Notebook & a Page in Odoo 18 Form View | Odoo 18 Technical Tutorials | Odoo 18 – CBMS Odoo ERP

In Odoo, notebook and pages are UI (User Interface) elements used primarily in form views to organize and display data in a structured, tabbed layout.A notebook is a container in Odoo XML views that holds multiple pages. It represents a tabbed interface, allowing users to navigate between different sections of a form without leaving the […]

EP-24 How to Hide a Field in Form View in Odoo 18 | Make Field Invisible Based on Other Fields – CBMS Odoo ERP

In Odoo 18  the invisible attribute is used in XML views to control the visibility of fields, buttons, tabs, or other view elements in the user interface. This attribute is typically used within form views, tree views, kanban views, etc. Key Points: invisible=”1″ or invisible=”true”: Hides the field or element from the view. invisible=”0″ or invisible=”false”: […]

How to Set Up Default Header/Footer in Odoo 18.2 | Odoo 19 Tutorials | Odoo 18.2 Features | Odoo 18 – CBMS Odoo ERP

Set default headers and footers for the quote builder. #Odoo18 #Odoo18.2 #Odoo19 #OdooTutorial #HeaderFooter #OdooTips #BusinessSoftware #ERP #NewFeatures #TechTutorial #Odoo18Tutorials #Odoo19 #Odoo19Tutorials #Odoo18Features #Odoo18ERP #Odoo18Development #Odoo18Tips #HeaderFooterOdoo #Odoo18Reports Connect With Us: ————————————— ➡️ Website: ➡️ Email: info@mycbms.com ➡️ Twitter: ➡️ LinkedIn: ➡️ Facebook: ➡️ Instagram: ➡️ Pinterest: #Set #Default #HeaderFooter #Odoo #Odoo #Tutorials #Odoo #Features […]

EP-12 How to Create a Window Action in Odoo 18 | Odoo 18 Development Tutorials | Odoo 18 Tutorials – CBMS Odoo ERP

Creating a Window Action in Odoo 18 involves defining an action that opens a view (like a list, form, kanban, etc.) for a particular model. Window actions are usually defined in XML and can also be created manually through the UI or programmatically using Python if needed. Here’s how you can create one via XML, […]

EP-7 How to Create a Model in Odoo 18 | How to Define a Model in Odoo 18 | Odoo 18 Technical Videos – CBMS Odoo ERP

Creating a model in Odoo 18 involves defining a new database structure to represent your business data and creating corresponding views for user interaction. Here’s a step-by-step guide to help you through the process: 1. Set Up Your Module Structure Begin by creating a new module to house your custom model. This approach ensures that […]

EP-6 What are Models in Odoo 18 | What are the Different Types of Models in Odoo 18 | Odoo 18 Videos – CBMS Odoo ERP

In the Odoo framework, “models” are used for structuring and managing data that the Odoo application stores. An Odoo model is a Python class that represents a database table. Odoo primarily uses three types of models: 1.models.Model (Regular Models): 2.models.TransientModel (Transient Models): 3.models.AbstractModel (Abstract Models): 1. Regular model/standard model The primary reason for using regular models is […]