Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

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

Odebírat

Get notified when there's activity on this post

This question has been flagged
1 Odpovědět
9795 Zobrazení
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
Zrušit
Avatar
Baiju KS
Nejlepší odpověď

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
Zrušit
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!

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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