Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

UncaughtPromiseError > OwlError

Subscriure's

Get notified when there's activity on this post

This question has been flagged
#upgrade#OWL#odoo17#widget#odoo16
2 Respostes
2914 Vistes
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
Descartar
Avatar
Anthony Taylor
Autor Best Answer

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

Thank you.

0
Avatar
Descartar
Avatar
OdooNomad
Best Answer

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
Descartar
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
can't open Accoutning App odoo 17 Enterprise
Accounting #odoo17
Avatar
Avatar
1
de jul. 24
1675
Help Needed: Implementing Home Delivery with Draft Billing in Odoo POS Solved
#pos #help #odoo16
Avatar
Avatar
1
d’ag. 24
1462
Odoo Helpdesk Help Center | Odoo 17 Solved
Helpdesk #odoo17 Helpcenter
Avatar
1
de juny 24
1871
Global Discount Odoo 17
#python #sale #discount #odoo17
Avatar
0
de nov. 24
123
Filter contacts for assigned pricelist
#pricelist #odoo17 #sales #saas
Avatar
0
de juny 24
1481
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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