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-27 How to Add Help Tooltip in Odoo 18 Form View |Odoo 18 Technical Tutorials |Odoo 18 Development – CBMS Odoo ERP

In Odoo, a Help Tooltip is a small informative text that appears when a user hovers over (or clicks on, depending on configuration) a field label or element in the user interface. It’s used to provide additional guidance or explanations about the purpose or usage of a particular field or feature, improving the user experience […]

How to Install Odoo 18 on Ubuntu 24.04 LTS Server | Installation of Odoo 18 in Server | Odoo 18 – CBMS Odoo ERP

Odoo is about to release its new version, Odoo 18. This version comes with many important functional and technical changes. This latest version promises to elevate the user experience and further streamline business operations. In this video, we will guide you on How to Install Odoo 18 on Ubuntu 24.04 LTS Server Step 1: Log in […]

EP-17: What are Fields in Odoo 18 | What are Simple Fields in Odoo 18| Odoo 18 Development Tutorials – CBMS Odoo ERP

In Odoo, fields are used to define the data that a model (table) will store. What are Simple Fields? Simple fields are fields that store basic types of data like text, numbers, dates, booleans, etc. They do not create relationships between models — they just store raw data. 1.Text (char) The Text field is used for short […]

EP-15 How to Add Access Rights 18 | Odoo 18 Security | Odoo 18 Development Tutorials |Odoo 18 Videos – CBMS Odoo ERP

college_erp/security: id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_college_student,access.college.student,college_erp.model_college_student,base.group_user,1,1,1,1 __manifest__.py ‘data’: [“security/ir.model.access.csv”, “views/college_student_views.xml”, “views/college_erp_menus.xml”, ], #Odoo18 #OdooSecurity #AccessRights #OdooTutorial #OdooDevelopment #OdooTechnical #ERP #BusinessSoftware #OpenSource #SoftwareTutorial #DataSecurity #OdooNewFeatures #OdooReleaseDate #Odoo18TechnicalTutorials #Odoo18Tutorials #Odoo18Development #Odoo18AccessRights #Odoo18Security #Odoo18NewFeatures #OdooTechnicalTutorial #Odoo18ERP #OpenSourceERP Connect With Us: ————————————— ➡️ Website: ➡️ Email: info@mycbms.com ➡️ Twitter: ➡️ LinkedIn: ➡️ Facebook: ➡️ Instagram: ➡️ Pinterest: #EP15 #Add #Access #Rights #Odoo […]

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-10 What are Actions in Odoo 18 | What are the Different Types of Actions in Odoo | Odoo 18 Videos – CBMS Odoo ERP

In Odoo, actions are predefined operations that determine what happens when a user interacts with a menu item, button, or other UI elements. Actions define how views, reports, wizards, or other operations behave in response to user input. Types of Actions in Odoo Window Actions (ir.actions.act_window) Used to open views (form, tree, kanban, etc.). Example: […]