Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

cannot call custom JS from inherited qweb template

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
javascriptqwebv7template
2 Risposte
14648 Visualizzazioni
Avatar
Peter Nietz

I try to call a JS function from my qweb inherited template via:

 <tr t-extend="ListView.row">
      <t t-jquery="td" t-operation="replace">
     [...]
      <t t-set="test" t-value="value_check(column.id, record.get(column.id))"/>

But I allways get the Error:

   Error: QWeb2 - template['ListView.rows']: 
   Runtime Error: Error: QWeb2 - template['ListView.row']: 
   Runtime Error: TypeError: dict.value_check is not a function

without the function call the extended template works fine. So the JS function cannot be found. First I tried this JS code for my function:

openerp.my_module = function(instance){
  var module = instance.web // loading the namespace of the 'sample' module

  module.View.include({
      value_check: function(key, value){
          console.log(key + ": " + value);
          return true;
      },        
  });
};

and then also

openerp.my_module = function(instance){
  var module = instance.web; // loading the namespace of the 'sample' module

  var _super_ = module.View.prototype.value_check;

  module.View.prototype.value_check = function(key, value){
       console.log(key +': '+value);
       _super_.call(this);
      return true;
  };
};

any suggestions? Could it be its because of the inherited tempate? But I can call stuff like render_cell from the web module js. It even doesn't work if I put the check_value into the view_list.js of the web module.

1
Avatar
Abbandona
Avatar
Peter Nietz
Autore Risposta migliore

OK, I solved it: The class I was extending was wrong.

openerp.my_module = function(instance){
    var module = instance.web.list  // loading the namespace of  'web.list' 

    module.Column.include({         // include to  'web.list.Column' class
        value_check: function(key, value){
           console.log(key + ": " + value);
           return true;
        },        
    });
};

Then I have to call my function via:

  <t t-set="test" t-value="column.value_check(column.id, record.get(column.id))"/>

...and it works perfectly.

0
Avatar
Abbandona
Avatar
Brett Lehrer
Risposta migliore

Is "custom_list" the name of your module folder? That would prevent the JS from loading. Either rename the module or edit the JS to say "openerp.web_module_name".

0
Avatar
Abbandona
Peter Nietz
Autore

yes it is the module name, but it doesn't work. I edited my post so its not confusing, I hope. I even tried to add the function to the web module itself but still the same error. Could it be because I extended the ListView.row template?

Peter Nietz
Autore

thx ... u put me on the right track

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Web client inheritance
javascript web qweb v7
Avatar
Avatar
Avatar
2
mar 15
6372
How to execute javascript inside qweb template Risolto
javascript v8 qweb report template
Avatar
Avatar
Avatar
Avatar
Avatar
6
dic 23
21601
AssertionError: Element odoo has extra content: template, line 5 Risolto
qweb template
Avatar
Avatar
1
gen 19
9593
odoo Missing dependencies qweb
javascript qweb
Avatar
3
ago 17
9951
Change login page on v7
v7 template
Avatar
Avatar
Avatar
Avatar
3
set 16
20444
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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