Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

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

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
errorsv17
3 Replies
2707 Tampilan
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
Buang
Avatar
adham.elsabbagh@gmail.com
Jawaban Terbai

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
Buang
Avatar
mrmastra@gmail.com
Jawaban Terbai

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
Buang
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
Jawaban Terbai

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

0
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Unable to activate Sales, Projects, Invoicing & HR modules in Odoo 17 Community Edition
modules errors v17
Avatar
Avatar
1
Mar 24
2569
Ya es posible hacer Upgrade de v17 a v17.1 ?
v17
Avatar
Avatar
1
Okt 25
1308
How to add a new Many2one field in res.config.settings? Diselesaikan
v17
Avatar
Avatar
Avatar
Avatar
4
Okt 25
3697
Add field to ALL models in Odoo
v17
Avatar
Avatar
Avatar
2
Sep 25
2370
How to disable Email notification - You have been assigned to Diselesaikan
v17
Avatar
Avatar
Avatar
Avatar
4
Sep 25
7764
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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