🚀 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 […]
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 […]
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 […]
What is a Form View in Odoo? In Odoo, a form view is one of the primary UI components used to display and interact with a single record of a model. It’s used when users want to create, read, update, or delete (CRUD) detailed information about a specific item—such as a product, customer, sales order, […]
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 […]
In Odoo, linking an action to a menu item is a common task when creating custom modules or modifying existing ones. Here’s how you can do it step by step: 1. Define the Action This can be a window action, report action, etc. Most commonly, it’s a ir.actions.act_window to open a form/list view. 2. Create […]
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, […]
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 […]
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 […]