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-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-11 What are Scheduled Actions in Odoo 18 | Actions in Odoo 18 | Odoo 18 Development Tutorials – CBMS Odoo ERP

In Odoo, a Scheduled Action (also called a cron job). Scheduled Actions in Odoo are automated tasks that run at set intervals without user input. They are used for things like sending reminder emails, updating reports, or cleaning up old data. You can set them up in Settings → Technical → Scheduled Actions, choosing: What […]

How to Activate Debug Mode in Odoo 18 | Odoo 18 New Features | Odoo 18 Tutorials | Odoo 18 Release – CBMS Odoo ERP

Odoo Debug Mode is a powerful tool that enables developers to inspect and modify the underlying code of Odoo applications. It provides detailed information about the system’s behavior, allowing developers to identify and fix issues more efficiently. Key Features of Odoo Debug Mode: – Detailed Logging: Enables the logging of various events and actions within […]