Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

How to add a new action menu item?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
modulemenunewmodulemenuitemnew
17 Replies
107202 Tampilan
Avatar
sanaa tayb

hello everyone , i'm trying to add a new menuitem on my created module , and have no idea how to do so ... Can anyone give me any hints or any exemples ...

my module is working fine , in the menu on the left side i want to add a new link if i may say so .. pleaase help me

2
Avatar
Buang
ClueLogics Technologies Pvt. Ltd.

wanna add directly into system or from code , plz describe

sanaa tayb
Penulis

i want to add it using code .

Tilfried Weissenberger

I would like to add a button directly from system - how can I do that? I cannot find these sections when editing FormView, thank you!

Odoo Mates

See how to add new menu and action: https://www.youtube.com/watch?v=Tdg4YQowXyI&list=PLqRRLx0cl0hoJhjFWkFYowveq2Zn55dhM&index=5

Avatar
Shelton
Jawaban Terbai
<menuitem id="my_menu_id" name="My Menu"
        parent="parent_menu_id" sequence="1"/>
1
Avatar
Buang
sanaa tayb
Penulis

thank you very much it did work , now to add an action to this new menuitem , i create a new form, new tree and stuff like the first one ??

Avatar
Anas Taji
Jawaban Terbai

In your view definition xml file your_module_view.xml add the following code (you may want to change some parameters into yours):

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<!-- Your List View Definition -->
<record id="view_your_model_name_tree" model="ir.ui.view">
    <field name="name">Your.Module.Name_tree</field>
    <field name="model">your.object</field>
    <field name="arch" type="xml">
        <tree string="ANY NAME">
            <!-- Add All Fields You Want In The List Here -->
            <field name="db_field_name"/>
        </tree>
    </field>
</record>

<!-- Your Form View Definition -->
<record id="view_your_model_name_form" model="ir.ui.view">
    <field name="name">Your.Module.Name_form</field>
    <field name="model">your.object</field>
    <field name="arch" type="xml">
        <form string="Form View Name" version="7.0">
            <!-- Add All Fields You Want In The Form Here -->
            <field name="db_field_name"/>
        </form>
    </field>
</record>

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

<!-- Action Menu Item Related To Above Action Window -->
<menuitem 
action="action_123" 
id="action_menu_123" 
parent="write_the_parent_menu_id"
name="Readable Text" 
sequence="1"/>
</data>
</openerp>

You may also want to take a look at idea module under your addons directory..%

8
Avatar
Buang
sanaa tayb
Penulis

it did work now i have a menu in the lest with 2 links one to list the list of my records( informations about my patient ) and second one to create a new record ( a new patient) ... Now my problem is i added a third menuitem ( so i can add an apointement for my patients ) but it didnt work .

sanaa tayb
Penulis

i created a new file RDV .py , and added in my old Xml file ( the one i used in my module ) another List View Definition and Form View Definition , Action Window Definition and Action Menu Item Related To the new Action Window ... is it the right thing to do or should i create a new XML file ?? and if i shoold create a new one how to relate it to the old one ?

Anas Taji

I am not sure if i got what you are asking for, You have one 'action menu item' that opens a list of patients (list view), and a form that shows patient per page (form view).

and you want to have another 'action menu item' to specify an appointment for a patient, am i right?

sanaa tayb
Penulis

Yes that's the idea .

Anas Taji

ok, ask it in another question instead of extending the current one..%

sanaa tayb
Penulis

Ok i did it :), thank you for all your answers

Avatar
krishna
Jawaban Terbai

The openERP  structure is __open__.py,__init__.py and module_name.xml.

__open__.py file contains the subsequent file data we have

__init__.py file contains the subsequent py files imports

module_name.xml having all menu items, so you should open this file and add your menu item which ever place you want

        <menuitem name="Employee" id="employee_menu_root"  />
        <menuitem name="Employee profile" id="employee_profile" parent="employee_menu_root" />
        <menuitem name="profile" id="candidate_profile" parent="employee_profile"" />

0
Avatar
Buang
Avatar
Serpent Consulting Services Pvt. Ltd.
Jawaban Terbai

Hi sey

Look below example :

<menuitem name="Example" action="define_your_menu_action" id="define_your_id" parent="parent_menu_id"/>

In menuitem name tag give your menu name and in action tag define your view action and in id tag define menu_id and parent tag give parent menu id means give id in which model menu you want to display your new menu.

Thank You

0
Avatar
Buang
sanaa tayb
Penulis

thank you very muuuch :)

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
pictures fields on openerp7
module newmodule new
Avatar
Avatar
1
Mar 15
4866
how to add a tab to the customer's notebook Diselesaikan
menu newmodule menuitem newtab
Avatar
Avatar
Avatar
3
Jan 24
15826
How i can create module openerp 7 / Odoo 8 ? Diselesaikan
module create newmodule new openerp
Avatar
Avatar
Avatar
Avatar
Avatar
17
Apr 23
70363
Dropdown sub-menu offset away from position
menu menuitem
Avatar
0
Des 24
1812
how to create a new menu?
menu new
Avatar
Avatar
Avatar
Avatar
Avatar
4
Jan 23
14011
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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