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

Add button after Create and Import (Odoo11)

S'inscrire

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

Cette question a été signalée
viewbuttontemplate
2 Réponses
12260 Vues
Avatar
arthur

Hello, I am trying to add a new button above the product tree view, right after the create and import buttons. I tried following these steps: https://www.odoo.com/pt_BR/forum/help-1/question/add-custom-button-to-list-view-header-90255, but wasn't successful. 

I have no clue of how I will actually call the action I want, but so far I can't even get the button to show up. can someone point out what I am missing? What I have so far is a view with the following lines:

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<template id="vtex_connector.raizs" name="Template Name">
<t t-extend="ListView.buttons">
<t t-jquery="button.o_list_button_import" t-operation="after">
<button t-if="widget.modelName == 'product.template'" type="button" class="btn btn-primary oe_new_button" accesskey="f">
Upload
</button>
</t>
</t>
</template>
</data>
</odoo>
1
Avatar
Ignorer
Avatar
DHA Medic
Meilleure réponse

button.xml

<templates>
<t t-extend="ListView.buttons">
<t t-jquery="button.o_list_button_add" t-operation="after" >
<button type="button" t-if='widget.modelName == "m.dha.sig"'
class="btn btn-primary btn-sm o_list_button_upload">Upload
</button>
</t>
</t>
</templates>

__manifest__.py
'qweb':[
'static/src/xml/button.xml',
],
2
Avatar
Ignorer
Avatar
Hazem Mahmoud (Rising Systems AG)
Meilleure réponse

Hi 

For ListView:

<template xml:space="preserve">
    <t t-extend="ListView.buttons">
<t t-jquery="button.oe_list_add" t-operation="after">
<!-- Your button here -->
</t>
</t>
</template>

For FormView:

<t t-extend="FormView.buttons">
    <t t-jquery="button.oe_form_button_create" t-operation="after">
<button type="button">My button</button>
</t>
</t>
2
Avatar
Ignorer
Sehrish

button.oe_form_button_create its not working in odoo15

Sehrish

xml:
<t t-name="library_management_system.my_test_button">
<button type="button" class="btn btn-secondary o_button_my_test">
My Test Button
</button>
</t>

<t t-extend="FormView.buttons" t-name="MyTestButtonFormView.buttons">
<t t-jquery="button.o_form_button_create" t-operation="after">
<t t-call="library_management_system.my_test_button"/>
</t>
</t>

.js code

odoo.define('library.rent.book.tree', function (require) {
"use strict";

var FormController = require('web.FormController');
var FormView = require('web.FormView');

var viewRegistry = require('web.view_registry');

function renderMyTestButton() {
if (this.$buttons) {
var self = this;
// var lead_type = self.initialState.getContext()['default_type'];
this.$buttons.on('click', '.o_button_my_test', function () {
self.do_action({
name: 'My Test Button',
type: 'ir.actions.act_window',
res_model: 'library.books',
target: 'new',
views: [[false, 'form']],
// context: {'is_modal': true, 'default_lead_type': lead_type},
});
});
}
}

var MyTestButtonFormController = FormController.extend({
willStart: function() {
console.log('-=-=-=-=-',this)
var self = this;
var ready = this.getSession().user_has_group('base.group_erp_manager')
.then(function (is_erp_manager) {
if (is_erp_manager) {
self.buttons_template = 'MyTestButtonFormView.buttons';
}
});
return Promise.all([this._super.apply(this, arguments), ready]);
},
renderButtons: function () {
this._super.apply(this, arguments);
renderMyTestButton.apply(this, arguments);
}
});

var MyTestButtonFormView = FormView.extend({
config: _.extend({}, FormView.prototype.config, {
Controller: MyTestButtonFormController,
}),
});

viewRegistry.add('library_rent_book_form_button', MyTestButtonFormView);

});

The issue is button not showing in form view header

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é
View Override - Add attribute on action button
view inheritance button
Avatar
Avatar
Avatar
3
déc. 23
3634
How to replace Proforma Invoice template?
button template proforma
Avatar
0
janv. 21
4612
search_default does not work?.. Résolu
view button search_default
Avatar
1
févr. 24
8646
[8.0] How to put a button at the label position? Résolu
xml view button
Avatar
Avatar
1
avr. 17
4615
Display view from a button having type="object"
view button odooV8
Avatar
Avatar
Avatar
3
mars 16
4741
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