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

UncaughtPromiseError > OwlError

Iscriviti

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

La domanda è stata contrassegnata
#upgrade#OWL#odoo17#widget#odoo16
2 Risposte
2915 Visualizzazioni
Avatar
Anthony Taylor

Getting an error while trying to update a custom module of mine.  I get this error when trying to edit any page which uses a dynamic widget I'm making.

UncaughtPromiseError > OwlError
Uncaught Promise > An error occured in the owl lifecycle (see this Error's "cause" property)
....
Caused by: TypeError: Cannot read properties of undefined (reading 'forEach')

Here is the contents of the main.js from which I think the error stems from?  I'm unsure because there is no 'forEach' in my code.

/** @odoo-module **/

import publicWidget from "@web/legacy/js/public/public_widget";

publicWidget.registry.BannerManager = publicWidget.Widget.extend({
    selector: '.banner-manager',
    init: function () {
        this.rpc = this.bindService("rpc");
    },
    start: function () {
        let bannerRow = this.el.querySelector('#banner-manager-row');

        if (bannerRow){
                let html = ``;
                let count = 0;

                this._fetchData().then(banners => {
                    while(count                       html += `

                               
                       
`;
                      } else {
                        html += `">
                               
                        `;
                      }
                      count++;
                    }
                    bannerRow.innerHTML = html;
                  });
        }
    },
    async _fetchData() {
        const bannerData = await this.rpc('/get_banners',{});
        return(bannerData);
    },
});

export default publicWidget.registry.BannerManager;

Any help debugging would be appreciated.


0
Avatar
Abbandona
Avatar
Anthony Taylor
Autore Risposta migliore

I'm not sure exactly why, but after merging your code with mine it suddenly started working perfectly.

Thank you.

0
Avatar
Abbandona
Avatar
OdooNomad
Risposta migliore

The error Cannot read properties of undefined (reading 'forEach') suggests that somewhere in your code, you are trying to call forEach on an undefined value. However, you mentioned that there is no forEach in your code, which indicates the issue might be coming from the data structure or response you are handling.

Let's go through the code to identify potential issues and ensure everything is correctly handled.

  1. Initialization of this.rpc: Make sure this.rpc is properly initialized.
  2. Handling the response from _fetchData: Ensure the data returned by _fetchData is what you expect it to be.
  3. Error Handling: Add error handling to catch any issues when fetching or processing data.

Here is the revised version of your code with added error handling and some corrections:

 
/** @odoo-module **/

import publicWidget from "@web/legacy/js/public/public_widget";

publicWidget.registry.BannerManager = publicWidget.Widget.extend({
    selector: '.banner-manager',
    init: function () {
        this._super(...arguments);
        this.rpc = this.bindService("rpc");
    },
    start: async function () {
        let bannerRow = this.el.querySelector('#banner-manager-row');

        if (bannerRow) {
            let html = '';
            let count = 0;

            try {
                const banners = await this._fetchData();
                banners.forEach(banner => {
                    if (count % 2 === 0) {
                        html += `
                                    
                                 
`;
                    } else {
                        html += `
                                    
                                 
`;
                    }
                    count++;
                });
                bannerRow.innerHTML = html;
            } catch (error) {
                console.error('Error fetching banners:', error);
            }
        }
    },
    async _fetchData() {
        try {
            const bannerData = await this.rpc('/get_banners', {});
            if (!Array.isArray(bannerData)) {
                throw new Error('Invalid banner data format');
            }
            return bannerData;
        } catch (error) {
            console.error('Error in _fetchData:', error);
            throw error;
        }
    },
});

export default publicWidget.registry.BannerManager;


0
Avatar
Abbandona
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à
can't open Accoutning App odoo 17 Enterprise
Accounting #odoo17
Avatar
Avatar
1
lug 24
1675
Help Needed: Implementing Home Delivery with Draft Billing in Odoo POS Risolto
#pos #help #odoo16
Avatar
Avatar
1
ago 24
1462
Odoo Helpdesk Help Center | Odoo 17 Risolto
Helpdesk #odoo17 Helpcenter
Avatar
1
giu 24
1872
Global Discount Odoo 17
#python #sale #discount #odoo17
Avatar
0
nov 24
123
Filter contacts for assigned pricelist
#pricelist #odoo17 #sales #saas
Avatar
0
giu 24
1481
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