Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Call view from 'More'/'Action' Menu

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
actionmenuir.valuesodoo10More-Menu
4 Antwoorden
8985 Weergaven
Avatar
Roland Seifriedsberger

Hello!

I want to call views with some added entries in the 'More'/'Action' Menu. 

I created following code to do this in a Modul 'fc_menu', but the 'More'/'Action' Menu is not displayed.

Does somebody know what is wrong in my code or give me a solution for this?


Here is the code...

File "fc_models.py" :

# -*- coding: utf-8 -*-

from odoo import models, fields, api

class InputCockpitTest(models.TransientModel):
    _name = 'fc.input.cockpit'
    _description = 'A model for testing the input cockpit'
    input_cockpit_name = fields.Char('Input-Cockpit-Name' , Required=False)

File "fc_menu_view.xml" => Menu entry leading to main view :

<menuitem id="fc_input_cockpit_menu" name="Input cockpit"
                  parent="fc_cockpits_menu"
                  action="fc_action_input_cockpit"
                  sequence="1"/>

Action, View and More Menu of main view :

        <!-- input cockpit dashboard Action-->
        <record id="fc_action_input_cockpit" model="ir.actions.act_window">
            <field name="name">Input Cockpit Action</field>
            <field name="type">ir.actions.act_window</field>
            <field name="res_model">fc.input.cockpit</field>
            <field name="view_type">form</field>
            <field name="view_mode">form</field>
            <field name="usage">menu</field>
            <field name="view_id" ref="fc_view_input_cockpit"/>
            <field name="help" type="html">
              <div class="oe_empty_custom_dashboard">
                  <p>
                    <b>Your input cockpit dashboard is empty.</b>
                  </p>
              </div>
            </field>
        </record>

        <!-- input cockpit dashboard View-->
        <record model="ir.ui.view" id="fc_view_input_cockpit">
            <field name="name">Dashboard input cockpit</field>
            <field name="model">fc.input.cockpit</field>
            <field name="arch" type="xml">
                <form string="Input Cockpit Dashboard">
                    <board style="2-1">
                        <column>
                            <field name="input_cockpit_name"/>
                        </column>
                    </board>
                </form>
            </field>
        </record>

        <!-- input cockpit More Action Menu - Test entry 1 -->
        <record id="fc_ir_values_input_cockpit" model="ir.values">
            <field name="model_id" ref="fc_menu.model_fc_input_cockpit" />
            <field name="name">Input Cockpit test</field>
            <field name="key2">client_action_multi</field>
            <field name="value" eval="'ir.actions.act_window,' + str(ref('fc_action_input_cockpit_test'))" />
            <field name="key">action</field>
            <field name="model">fc.input.cockpit</field>
        </record>

        <!-- input cockpit More Action Menu - Test entry 2 -->
        <record id="fc_ir_values_input_cockpit_2" model="ir.values">
            <field name="model_id" ref="fc_menu.model_fc_input_cockpit" />
            <field name="name">Input Cockpit test 2</field>
            <field name="key2">client_action_multi</field>
            <field name="value" eval="'ir.actions.act_window,' + str(ref('fc_action_input_cockpit_test_2'))" />
            <field name="key">action</field>
            <field name="model">fc.input.cockpit</field>
        </record>

Goal View / Action of entry 1 in 'More'/'Action' Menu :

        <!-- input cockpit test Action-->
        <record id="fc_action_input_cockpit_test" model="ir.actions.act_window">
            <field name="name">Input Cockpit Test Action</field>
            <field name="type">ir.actions.act_window</field>
            <field name="res_model">fc.input.cockpit</field>
            <field name="view_type">form</field>
            <field name="view_mode">form</field>
            <field name="view_id" ref="fc_view_input_cockpit_test"/>
            <field name="target">current</field>
            <field name="multi">True</field>
            <field name="help" type="html">
              <div class="oe_empty_custom_dashboard">
                  <p>
                    <b>Your input cockpit test view is empty.</b>
                  </p>
              </div>
            </field>
        </record>

        <!-- input cockpit test View-->
        <record id="fc_view_input_cockpit_test" model="ir.ui.view">
            <field name="name">Input Cockpit Test View</field>
            <field name="model">fc.input.cockpit</field>
            <field name="arch" type="xml">
                <form string="Input Cockpit" version="7.0">

                    <!-- Design Form or put your field here -->                
                    <footer>
                        <!-- Add button on footer of pop-up window -->
                    </footer>
               </form>
            </field>
        </record>


I hope anyone can help me please finding a solution to call views from 'More'/'Action' Menu!

Many Thanks in advance!



0
Avatar
Annuleer
Pranav P S

Did you checked action menu in settings front end.

This might not be added to more menu by default.

Roland Seifriedsberger
Auteur

Hello, thanks for your answer!

Sorry but I did not know what you mean?

Could please explan where exactly to change some settings?

Avatar
Mitul Shingala
Beste antwoord

Hello

try this example. and make yourself sure that you register  .xml file into your __manifest__.py file

        <record model="ir.values" id="record_unique_id">
            <field name="model_id" ref="modulename.model_object_name" />
            <field name="name">ANY VALUE</field>
            <field name="key2">client_action_multi</field>
            <field name="value" eval="'ir.actions.act_window,' +str(ref('your_Action_id'))" />
            <field name="key">action</field>
            <field name="model">object_name</field>
        </record>
or make the action with below action
 <act_window id="action_wizard_small" 
name="My Invoice"
src_model="account.invoice"
res_model="wizard.small"
view_type="form"
view_mode="form"
key2="client_action_multi"
target="new" /> 
0
Avatar
Annuleer
Roland Seifriedsberger
Auteur

Hello, thanks for your answers!

With following code it was possible to add an entry in the 'More'/'Action' Menu.

<act_window id="fc_action_input_cockpit_more_button" name="More-Button-Test" res_model="board.board" src_model="fc.input.cockpit" view_type="form" view_mode="form" key2="client_action_multi" multi="False" target="new"/>

But 'More'/'Action' Menu is only displayed after I created a record, and not on initial view!

See following pictures...

1) Initial view where no record is created - here the 'More'/'Action' Menu is not displayed:

2) View after created a record - here it is displayed correctly:

Could somebody please tell me how it is possible to show the 'More'/'Action' Menu already on initial view when no records are created?

Many thanks in advance!

Mitul Shingala

the more/action button only visible when the one or more record is selected. if there is not record then it will not display.

Roland Seifriedsberger
Auteur

Thank you Mitul! That's an important information, I did not know it. Kind regards and many thanks for your help!

Avatar
Roland Seifriedsberger
Auteur Beste antwoord

Hello, thanks for your answers!

With following code it was possible to add an entry in the 'More'/'Action' Menu.

<act_window id="fc_action_input_cockpit_more_button" name="More-Button-Test" res_model="board.board" src_model="fc.input.cockpit" view_type="form" view_mode="form" key2="client_action_multi" multi="False" target="new"/>


But 'More'/'Action' Menu is only displayed after I created a record, and not on initial view!

See following pictures... (Sorry, I tried to add pictures but I got an error when storing them!)

1) Initial view where no record is created - here the 'More'/'Action' Menu is not displayed:


2) View after created a record - here it is displayed correctly:



Could somebody please tell me how it is possible to show the 'More'/'Action' Menu already on initial view when no records are created?

Many thanks in advance!

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
odoo 10 action menu button
action menu odoo10
Avatar
Avatar
1
jun. 17
4827
Assign action menu item to specific tree view
action menu odoo9 odoo10
Avatar
Avatar
Avatar
7
jul. 23
22939
[odoo10] default search for sub-menu
menu odoo10
Avatar
Avatar
2
sep. 18
3597
Menus: which method is being called?
action menu
Avatar
0
mei 15
4335
How to create a menu without action
action menu
Avatar
0
mrt. 15
4732
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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