Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How do you make new menu items and attach them to models,views & actions?

Subscribe

Get notified when there's activity on this post

This question has been flagged
1 Reply
9790 Views
Avatar
Yenthe Van Ginneken (Mainframe Monkey)

Hey everybody

How exactly do you make new menu items and attach them to the models/views?
I'm looking into writing my own modules and customizing existing ones. The problem is that the little documentation that there is doesn't help me any further.. (for example https://www.odoo.com/documentation/8.0/howtos/backend.html )

Could anybody explain me how to do the following things?

  • Make a new menu item in a module
  • How to add custom strings to this (for example an item name with the name 'Documents'
  • How to add a view to it
  • How to customize this view
  • ...

I'd really like to know how the flow is and how everything works.
I tried to make a new menu item but I couldn't get anything working.
<record model="ir.actions.act_window" id="an_id_thats_linked_somewhere">
    <field name="name">My custom module name</field>
    <field name="res_model">ir.attachment</field><
    <field name="view_mode">tree,form</field>
</record>

Could anybody explain this some more and give a demo for example? There is by far to little documentation about this..
I'm trying to find out what refers to what and how you connect everything together. I am trying to add a new menu item in the module "Projects" and then show all attachments from all projects.

With kind regards
Yenthe

1
Avatar
Discard
Avatar
Baiju KS
Best Answer

First of all you have to define a new Object. You can do that by adding your custom module.

Eg for new object:- file is " custom_test.py"

from osv import osv,fields
from openerp.tools.translate import _


class custom_class(osv.osv):
    _name='custom.class'
    _columns={
              'names' : fields.char('Name', size=128, required=True),
              'class' : fields.char(string='Class', required=True),
              'code' : fields.char(string='Code'),
              }
    
custom_class()

 

class custom_subject(osv.Model):
    _name = "custom.subject"
    _description = "Subjects"
    _columns = {
        'name': fields.char('Name', size=64, required=True),
        'code': fields.char('Code', size=12, required=True),
        'maximum_marks': fields.integer("Maximum marks", size=5),
        'minimum_marks': fields.integer("Minimum marks", size=5),
        'weightage': fields.integer("Weightage", size=10),
        'is_practical':fields.boolean('Is Practical', help='Check this if subject is practical.'),
        'no_exam' : fields.boolean("No Exam", help='Check this if subject has no exam.'),

    }
custom_subject()

 

Then you have to define your view  file

Steps to add menu item:-

1. define your menu item

      Eg:

        <menuitem   icon="terp-project" id="my_test_menu"   name="My Test" sequence="4" action="action_my_form"/>

**This is your main menu item that shows in your tab

2. define your action

Eg:

        <record model="ir.actions.act_window" id="action_my_form">
            <field name="name">Class</field>
            <field name="res_model">custom.class</field>
            <field name="view_type">form</field>
            <field name="view_id" ref="my_test_form" />
            <field name="view_mode">tree,form</field>
        </record>


**here i defined action for my main menu item and specified its view types

3. then you can link your views to action

Eg:

        <record id="action_my_form_tree" model="ir.actions.act_window.view">
            <field name="view_mode">tree</field>
            <field name="view_id" ref="my_test_tree"/>
            <field name="act_window_id" ref="action_my_form"/>
        </record>


**here i linked my tree view to action, you can link your each view like this,ie form,search etc....

 

 

My custom view file "custom_test_view.xml" as follows:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>

    
         <record model="ir.ui.view" id="my_test_form">
            <field name="name">my.test.form</field>
            <field name="model">custom.class</field>
            <field name="arch" type="xml">
            <form string="Class Information" version="7.0">
                   <sheet>
                        <group col="4" colspan="4">
                            <field name="names" />
                            <field name="class" />
                            <field name="code" />
                        </group>
                    </sheet>
            </form>
         </field>
      </record>
    
    
        <record model="ir.ui.view" id="my_test_tree">
            <field name="name">my.test.tree</field>
            <field name="model">custom.class</field>
            <field name="arch" type="xml">
                <tree string="Class">
                    <field name="class"/>
                    <field name="code"/>
                </tree>
            </field>
        </record>
                            
       
       
       
        <record model="ir.ui.view" id="view_custom_subject_form">
            <field name="name">custom.subject.form</field>
            <field name="model">custom.subject</field>
            <field name="arch" type="xml">
                <form string="Subjects" version="7.0">
                    <sheet>
                        <group col="4" colspan="4">
                            <field name="name" placeholder="Name"/>
                            <field name="code" placeholder="Code"/>
                            <field name="maximum_marks" />
                            <field name="minimum_marks" />
                            <field name="weightage" />
                            <field name="is_practical"/>
                            <field name="no_exam"/>
                        </group>

                    </sheet>
                </form>
            </field>
        </record>
       
        <record model="ir.ui.view" id="view_custom_subject_tree">
            <field name="name">custom.subject.tree</field>
            <field name="model">custom.subject</field>
            <field name="arch" type="xml">
                <tree string="Subjects">
                    <field name="name"/>
                    <field name="code"/>
                    <field name="maximum_marks"/>
                    <field name="minimum_marks"/>
                    <field name="weightage"/>
                    <field name="no_exam"/>
                </tree>
            </field>
        </record>
       
       
       
               
        <record model="ir.actions.act_window" id="action_my_form">
            <field name="name">Class</field>
            <field name="res_model">custom.class</field>
            <field name="view_type">form</field>
            <field name="view_id" ref="my_test_form" />
            <field name="view_mode">tree,form</field>
        </record>
       
        <record id="action_my_form_tree" model="ir.actions.act_window.view">
            <field name="view_mode">tree</field>
            <field name="view_id" ref="my_test_tree"/>
            <field name="act_window_id" ref="action_my_form"/>
        </record>
       
        <record model="ir.actions.act_window" id="action_subjects_form">
            <field name="name">Subjects</field>
            <field name="res_model">custom.subject</field>
            <field name="view_type">form</field>
            <field name="view_id" ref="view_custom_subject_form"/>
            <field name="view_mode">tree,form</field>
        </record>
       
        <record id="action_view_custom_subjects_tree" model="ir.actions.act_window.view">
            <field name="view_mode">tree</field>
            <field name="view_id" ref="view_custom_subject_tree"/>
            <field name="act_window_id" ref="action_subjects_form"/>
        </record>
       
       
        <record id="action_view_custom_subjects_form" model="ir.actions.act_window.view">
            <field name="view_mode">form</field>
            <field name="view_id" ref="view_custom_subject_form"/>
            <field name="act_window_id" ref="action_subjects_form"/>
        </record>
       
       
             
    
        <menuitem
            icon="terp-project" id="my_test_menu"
            name="My Test" sequence="4"
            action="action_my_form"/>
                                                
        <menuitem
            name="Subjects" parent="my_test_menu"
            id="menu_subjects"
            sequence="2"/>
        
        <menuitem name="Subjects Details" parent="menu_subjects"
            id="menu_sub_subject" action="action_subjects_form"/>
                        
    </data>
</openerp>


For any assistance feel free to  baijuks@hotmail.com

3
Avatar
Discard
Yenthe Van Ginneken (Mainframe Monkey)
Author

Thanks Baiju, this atleast gives me a good start.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now