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-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”: […]

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 […]

Model Constraints – Python Constraints in Odoo – CBMS Odoo ERP

Odoo Python Constraints ( api.constraints ) helps to validate specific fields given as it’s parameters. It will return a message if the data is invalid.api.constraints trigger a python method where the validation conditions are checked. Get the module from our repository: In this videos, you are going to learn odoo python constraints Related videos: Computed […]