Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

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

Subscriure's

Get notified when there's activity on this post

This question has been flagged
1 Respondre
9792 Vistes
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
Descartar
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
Descartar
Yenthe Van Ginneken (Mainframe Monkey)
Autor

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!

Registrar-se
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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