Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to Add Action and Menus in Odoo

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 3.19k
    Comment on it

    To add action and menu in Odoo
    Action- There are different types of actions in Odoo:
    1- Window: Opening of a new window
    2- Report: The printing of a report
    3- Custom Report: The personalized reports or RML Report: The XSL:RML reports
    4- Execute: execution of a method on the server side
    5- Group: Gather some actions in one group
    In your .xml file use these code to show the action in your form in Odoo

    1. <!-- Your Action Window Definition -->
    2. <record id="action_123" model="ir.actions.act_window">
    3. <field name="name">Your Module Name</field>
    4. <field name="res_model">your.object</field>
    5. <field name="view_type">form</field>
    6. <field name="view_mode">list,form</field>
    7. </record>

    Menus- In your .xml file use these code shows the menus in your form in Odoo

    1. <!-- Action Menu Item Related To Above Action Window -->
    2.  
    3. <menuitem action="action_123" id="action_menu_123" parent="write_the_parent_menu_id"
    4. name="Readable Text"
    5. sequence="1"/>

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: