Enable Dark Mode!
how-to-define-menu-and-actions-in-odoo-18.jpg
By: Nisiya K

How to Define Menu & Actions in Odoo 18

Technical

Odoo 18 continues to build on the platform's strengths, offering even more customization options that enable businesses to create a tailored experience. A significant part of this customization involves defining menus and actions, which are integral to how users navigate the system and interact with data. Understanding how to set these up is crucial for any Odoo developer or administrator who wants to optimize the user interface and streamline workflows.
This guide will walk you through the process of defining menus and actions in Odoo 18, providing a detailed look at the steps involved and the code required to implement these features.

Setting Up the Model

Before diving into menus and actions, let's establish a foundational model. This model will serve as the basis for our menu and action configurations. In this example, we'll create a simple model to manage student data.
from odoo import models, fields
class StudentData(models.Model):
    _name = "student.data"
    name = fields.Char(string="Name")
    class_name = fields.Char(string="Class")
    address = fields.Char(string="Address")
_name: This defines the model's name, which is used within the Odoo system.
name: A character field for the student's name.
class_name: A character field for the class name.
address: A character field for the student's address.
This model will store essential information about students, providing the data that our menus and actions will interact with.
Defining Actions
Actions in Odoo dictate how users interact with data. They define the views (such as list, form, kanban) and determine what happens when a menu item is selected.
Here's an example of an action that manages student records:
<odoo>
    <data>
        <record id="action_student_record" model="ir.actions.act_window">
            <field name="name">Student Management</field>
            <field name="res_model">student.data</field>
            <field name="view_mode">tree,form</field>
            <field name="help" type="html">
                <p class="o_view_nocontent_smiling_face">
                    Create a Data
                </p>
            </field>
        </record>
    </data>
</odoo>
action_student_record: A unique identifier for this action.
model="ir.actions.act_window": Indicates this is a window action that opens a specific view.
name: The name of the action, visible to the user.
res_model: The model this action applies to, in this case, student.data.
view_mode: Specifies the views available (tree for list view, form for individual record view).
help: An HTML help message shown when no records are present.
This action allows users to manage student records through the tree and form views, providing a straightforward interface for interacting with the data.
Creating Menus
Menus in Odoo provide the structure for navigating the system. They are hierarchical, allowing you to create a clear, organized navigation experience.
Here’s how to define the main menu and sub-menus for "Student Management":
<odoo>
    <data>
        <menuitem id="student_menu_root"
                  name="Student Management"
                  sequence="10">
            <menuitem id="student_order_menu"
                      name="Students"
                      sequence="10">
                <menuitem id="menu_student_records"
                          name="Student Records"
                          action="action_student_record"
                          sequence="10"/>
            </menuitem>
        </menuitem>
    </data>
</odoo>
student_menu_root: The top-level menu for the "Student Management" module.
sequence: Determines the order in which menus are displayed (lower numbers appear first).
student_order_menu: A sub-menu under the root menu, labeled "Students."
menu_student_records: A menu item under "Students," linked to the action_student_record action.
This structure ensures that users can navigate to the "Student Management" section and access student records easily.

Extending the Menu and Action Definitions

To enhance the module, you might want to add more functionalities, such as managing class records alongside student records.
Here's how you can define an additional action and menu for managing class records:
<odoo>
    <data>
        <!-- Action for Class Records -->
        <record id="action_class_record" model="ir.actions.act_window">
            <field name="name">Class Records</field>
            <field name="res_model">class.record</field>
            <field name="view_mode">tree,form</field>
            <field name="help" type="html">
                <p class="o_view_nocontent_smiling_face">
                    Manage Classes
                </p>
            </field>
        </record>
        <!-- Menu for Class Records -->
        <menuitem id="class_menu"
                  name="Class Records"
                  action="action_class_record"
                  parent="student_order_menu"/>
    </data>
</odoo>
action_class_record: Defines the action for managing class records.
res_model="class.record": Specifies the model this action applies to, class.record.
class_menu: A new menu item under the "Students" menu, labeled "Class Records."
parent="student_order_menu": Indicates that this menu is a child of the "Students" menu.
By organizing menus in this way, you provide a logical structure that users can navigate intuitively, ensuring all related functionalities are grouped together.
Defining menus and actions in Odoo 18 is an essential skill for anyone looking to customize the platform to better fit their business processes. By carefully setting up models, defining actions, and organizing menus, you can create a user-friendly interface that enhances productivity and streamlines navigation.
In this guide, we've covered how to define a simple model, create actions that determine how users interact with data, and organize these actions within a hierarchical menu structure. Whether you're managing student records, class records, or any other type of data, these steps will help you create an efficient and intuitive Odoo application. With these tools, you can unlock the full potential of Odoo 18, customizing it to meet the unique needs of your organization while providing a seamless and effective user experience.
To read more about How to Define Menus & Actions in Odoo 17?, refer to our blog How to Define Menus & Actions in Odoo 17?


If you need any assistance in odoo, we are online, please chat with us.



0
Comments



Leave a comment



whatsapp
location

Calicut

Cybrosys Technologies Pvt. Ltd.
Neospace, Kinfra Techno Park
Kakkancherry, Calicut
Kerala, India - 673635

location

Kochi

Cybrosys Technologies Pvt. Ltd.
1st Floor, Thapasya Building,
Infopark, Kakkanad,
Kochi, India - 682030.

location

Bangalore

Cybrosys Techno Solutions
The Estate, 8th Floor,
Dickenson Road,
Bangalore, India - 560042

Send Us A Message