Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to add Button on treeview header and to call a wizard from Odoo 12?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
treeviewbuttonsodoo12
1 Odpowiedz
14243 Widoki
Awatar
gain charlie

Hi Odoo Experts,

I want to add a new button place on treeview header in odoo 12 and call a wizard to do something.

I have research and found some blogs but its on older version.

I did try it but it fail to make it work.

Thank you for your time and help in advance.

2
Awatar
Odrzuć
Awatar
SLIFE AFRICA
Najlepsza odpowiedź

STEP 1: INHERIT THE TREE VIEW QWEB TEMPLATE

Define a xml file : static/src/xml/template.xml
<t t-extend="ListView.buttons">
<t t-jquery="button.o_list_button_add" t-operation="after">
<button t-if='widget' type="button" class="btn btn-secondary o_button_to_call_wizard">
    Import
   </button>
</t>
</t>


STEP 2: INHERIT THE LIST CONTROLLER JS

Define a js file : static/src/js/list_controller.js
odoo.define('your_module_folder.JsToCallWizard', function (require) {
"use strict";

var ListController = require('web.ListController');

var JsTocallWizard = ListController.include({
renderButtons: function($node){
this._super.apply(this, arguments);
if (this.$buttons) {
this.$buttons.on('click', '.o_button_to_call_wizard', this.action_to_call_wizard.bind(this));
this.$buttons.appendTo($node);
}
},
action_to_call_wzard: function(event) {
event.preventDefault();
var self = this;
self.do_action({
name: "Open a wizard",
type: 'ir.actions.act_window',
res_model: 'my.wizard.model.name',
view_mode: 'form',
view_type: 'form',
views: [[false, 'form']],
target: 'new',
});

},
});
});

STEP 3 : ADD YOUR JS FILE IN ASSETS BACKEND

XML File : views/assets_backend.xml
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<template id="assets_backend" inherit_id="web.assets_backend" name="Backend Assets">
<xpath expr="//script[last()]" position="after">
<script src="/your_module_folder/static/src/js/list_controller.js"></script>
</xpath>
</template>
</odoo>

STEP 3: DECLARE YOUR FILES IN MANIFEST

'data': ['views/assets_backend.xml'],
'qweb': ['static/src/xml/template.xml'],


2
Awatar
Odrzuć
Hilar Andikkadavath

Neat Explanation.

gain charlie
Autor

Hi, Frejus,

I have created the file above and replace "your_module_folder" in both js file.

I have added the manifest file param in both 'data' and 'qweb ' .

Question, is 'qweb' applicable to Odoo 12?( cant see it in manifest odoo 12 documentation.)

When i run it i got the following error( am not familiar with js):

Uncaught TypeError: Cannot read property 'bind' of undefined

http://localhost:8069/web/content/491-e52e898/web.assets_backend.js:3194

Traceback:

TypeError: Cannot read property 'bind' of undefined

at Class.renderButtons (http://localhost:8069/web/content/491-e52e898/web.assets_backend.js:3194:330)

at Class.renderButtons (http://localhost:8069/web/content/457-f2407d2/web.assets_common.js:3541:371)

at Class._renderControlPanelElements (http://localhost:8069/web/content/491-e52e898/web.assets_backend.js:1290:175)

at Class.start (http://localhost:8069/web/content/491-e52e898/web.assets_backend.js:1282:1427)

at Class.prototype.(anonymous function) [as start] (http://localhost:8069/web/content/457-f2407d2/web.assets_common.js:3538:488)

at Class.start (http://localhost:8069/web/content/491-e52e898/web.assets_backend.js:1541:1042)

at Class.prototype.(anonymous function) [as start] (http://localhost:8069/web/content/457-f2407d2/web.assets_common.js:3538:488)

at http://localhost:8069/web/content/457-f2407d2/web.assets_common.js:3683:52

at http://localhost:8069/web/content/457-f2407d2/web.assets_common.js:802:681

at fire (http://localhost:8069/web/content/457-f2407d2/web.assets_common.js:796:299)

SLIFE AFRICA

You can try this code :

odoo.define('your_module_folder.JsToCallWizard', function (require) {

"use strict";

var ListController = require('web.ListController');

var JsTocallWizard = ListController.include({

renderButtons: function($node){

this._super.apply(this, arguments);

if (this.$buttons) {

this.$buttons.on('click', '.o_button_to_call_wizard', function () {

var self = this;

self.do_action({

name: "Open a wizard",

type: 'ir.actions.act_window',

res_model: 'my.wizard.model.name',

view_mode: 'form',

view_type: 'form',

views: [[false, 'form']],

target: 'new',

});

});

this.$buttons.appendTo($node);

}

},

});

});

gain charlie
Autor

I have copied everything on hr_clock_import/static/src/js/list_controller.js the above code,

except replaced "your_module_folder" to hr_clock_import.

Result : Error gone.

But it does not display the button on the tree view header. i.e. after CREATE or IMPORT button

Am trying to add a new button from ATTENDANCE treeview called DOWNLOAD

OdooBot
Hi Frejus,

I have copied everything on hr_clock_import/static/src/js/list_controller.js the above code,

except replaced "your_module_folder" to hr_clock_import.

Result : Error gone.

But it does not display the button on the tree view header. i.e. after CREATE or IMPORT button

Am trying to add a new button from ATTENDANCE treeview called DOWNLOAD


I have attached my code below for your analysis.
Thank your for your time.
God Bless!

Gain Charlie
Odoo User
On Wednesday, 16 October 2019, 4:26:31 am GMT+8, Fréjus Arnaud AKA <frejusarnaud@gmail.com> wrote:


View Forum Post Odoo S.A.

You can try this code :

odoo.define('your_module_folder.JsToCallWizard', function (require) {

"use strict";

var ListController = require('web.ListController');

var JsTocallWizard = ListController.include({

renderButtons: function($node){

this._super.apply(this, arguments);

if (this.$buttons) {

this.$buttons.on('click', '.o_button_to_call_wizard', function () {

var self = this;

self.do_action({

name: "Open a wizard",

type: 'ir.actions.act_window',

res_model: 'my.wizard.model.name',

view_mode: 'form',

view_type: 'form',

views: [[false, 'form']],

target: 'new',

});

});

this.$buttons.appendTo($node);

}

},

});

});

Sent by Odoo S.A. using Odoo.

Tri Nanda

I got this error:
Uncaught TypeError: self.do_action is not a function

when using the last code @gain charlie
is there any solustions @gain charlie and @Fréjus Arnaud AKA and anyone on this forum?

Thanks,
Tri

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
How to add buttons in tree view header and run a function in Odoo 12?
treeview buttons odoo12
Awatar
Awatar
1
paź 19
7784
In Odoo 12, How to create a new button alongside CREATE button of a treeview and call a wizard
wizard treeview buttons odoo12
Awatar
Awatar
1
paź 19
3863
Odoo 12, how to add a button to treeview header and call the existing wizard? Rozwiązane
wizard treeview buttons odoo12
Awatar
Awatar
Awatar
2
paź 19
9362
add one button in treeview to sync many records from another app API Rozwiązane
treeview buttons
Awatar
Awatar
2
cze 22
3539
input type text field and my button instead default buttons in treeview
treeview buttons
Awatar
0
lip 17
5010
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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