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