Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

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

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

Odd Occurence on My Odoo v17 Instance (Self Hosted).

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
errorsv17
3 Respostas
2723 Visualizações
Avatar
Chris Richa

Upon hitting that little "disguard" button next to save bytton on certain apps/modules(not all, but enough to cause concern. Even on naitive apps/modules) I get the following error:

UncaughtPromiseError > TypeError

Uncaught Promise > commands is not iterable

TypeError: commands is not iterable

 at Proxy._applyCommands (https://myodoo.com/web/assets/a925e14/web.assets_web.min.js:6326:65)

    at Proxy._discard (https://myodoo.com/web/assets/a925e14/web.assets_web.min.js:6363:283)

    at Proxy._discard (https://myodoo.com/web/assets/a925e14/web.assets_web.min.js:6108:142)

    at https:/myodoo.com/web/assets/a925e14/web.assets_web.min.js:6066:39

    at always (https://myodoo.com/web/assets/a925e14/web.assets_web.min.js:3916:42)


What causes this? How can I fix it?

I find myself having to forcefully close the tab and come back man ually because I cannot disguard or go away from it.

0
Avatar
Cancelar
Avatar
adham.elsabbagh@gmail.com
Melhor resposta

I encountered the "commands is not iterable" error when trying to discard changes in my Odoo 17 instance. After investigating, I found that the issue occurred because _commands was either not properly initialized or set to a non-iterable value (like undefined or null).

To fix this, I ensured that _commands is always initialized as an array by adding a check in the setup method of the StaticList. Additionally, I added logging to track the state of _commands and verified that it's always an iterable. Here's the adjustment I made:

patch(StaticList.prototype, {
    setup(config, data, options = {}) {
        this._parent = options.parent;
        this._onUpdate = options.onUpdate;

        this._cache = markRaw({});
        this._commands = this._commands || [];  // Ensuring _commands is always an array
        console.log("Initial Commands:", this._commands);

        this._savePoint = undefined;
        this._unknownRecordCommands = {};
        this._currentIds = [...this.resIds];
        this._needsReordering = false;
        this._tmpIncreaseLimit = 0;
        this._extendedRecords = new Set();

        const safeData = Array.isArray(data) ? data : [];
        this.records = safeData.slice(this.offset, this.limit).map((r) => this._createRecordDatapoint(r));

        this.count = this.resIds.length;
        this.handleField = Object.keys(this.activeFields).find(
            (fieldName) => this.activeFields[fieldName].isHandle
        );
    },

    _applyCommands() {
        console.log("Applying Commands:", this._commands);
        this._commands = this._commands || [];  // Recheck before applying
    }
});

With these changes, the error was resolved, and the discard functionality works without issues. Adding logging also helped ensure the state of _commands remains consistent throughout its lifecycle.

0
Avatar
Cancelar
Avatar
mrmastra@gmail.com
Melhor resposta

I resolved the issue in Odoo17 by uninstalling a module that was adding a patch to the StaticList class. This patch was causing unintended behavior in list management by overriding the setup method, and removing the module fixed the problem.


To help identify if you are experiencing the same issue, you can check if they have similar code to the one causing the problem. This code is typically found in JavaScript files located in the path module/static/src/js. If you find a patch modifying the StaticList class or overriding its setup method, it could be the source of the issue.


The code:



import {StaticList} from "@web/model/relational_model/static_list";

import {markRaw} from "@odoo/owl";

import {patch} from "@web/core/utils/patch";


patch(StaticList.prototype, {

setup(config, data, options = {}) {

this._parent = options.parent;

this._onUpdate = options.onUpdate;


this._cache = markRaw({});

this._commands = [];

this._initialCommands = [];

this._savePoint = undefined;

this._unknownRecordCommands = {};

this._currentIds = [...this.resIds];

this._initialCurrentIds = [...this.currentIds];

this._needsReordering = false;

this._tmpIncreaseLimit = 0;

this._extendedRecords = new Set();


this.records = Array.isArray(data)

? data

.slice(this.offset, this.limit)

.map((r) => this._createRecordDatapoint(r))

: [];

this.count = this.resIds.length;

this.handleField = Object.keys(this.activeFields).find(

(fieldName) => this.activeFields[fieldName].isHandle

);

},

});




3
Avatar
Cancelar
Matias Velazquez

Thanks! It worked. It was the same module, the mass editing module from OCA right?

mrmastra@gmail.com

Yes! Was the mass editing from OCA.

Omar Alaa Mansour

thanks it solved

Avatar
Matias Velazquez
Melhor resposta

Hi! Did you reached any solution? I'm having the same problem.

0
Avatar
Cancelar
Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
Unable to activate Sales, Projects, Invoicing & HR modules in Odoo 17 Community Edition
modules errors v17
Avatar
Avatar
1
mar. 24
2588
Ya es posible hacer Upgrade de v17 a v17.1 ?
v17
Avatar
Avatar
1
out. 25
1317
How to add a new Many2one field in res.config.settings? Resolvido
v17
Avatar
Avatar
Avatar
Avatar
4
out. 25
3710
Add field to ALL models in Odoo
v17
Avatar
Avatar
Avatar
2
set. 25
2388
How to disable Email notification - You have been assigned to Resolvido
v17
Avatar
Avatar
Avatar
Avatar
4
set. 25
7777
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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