Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Call view from 'More'/'Action' Menu

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
actionmenuir.valuesodoo10More-Menu
4 Réponses
8982 Vues
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
Ignorer
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
Meilleure réponse

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
Ignorer
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 Meilleure réponse

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
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
odoo 10 action menu button
action menu odoo10
Avatar
Avatar
1
juin 17
4827
Assign action menu item to specific tree view
action menu odoo9 odoo10
Avatar
Avatar
Avatar
7
juil. 23
22938
[odoo10] default search for sub-menu
menu odoo10
Avatar
Avatar
2
sept. 18
3597
Menus: which method is being called?
action menu
Avatar
0
mai 15
4332
How to create a menu without action
action menu
Avatar
0
mars 15
4730
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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