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

Delete Manufacturing order / work order in Progress. Not possible!

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
manufacturingenterpriseV12
4 Replies
11708 Tampilan
Avatar
Lars Aam

It happened that there was some entry in a work order for a manufacturing order, that was wrong.  What we needed to do, was to cancel and delete the work order / manufacturing order. Since it would only create wrong postings.

But I find absolutely now way of managing that. I cannot cancel or delete a work order that is in status "Progress". I cannot cancel / delete a Manufacturing order that got a Work order in progress attached to it.

Pleas advice what I can do to get rid of these orders.

1
Avatar
Buang
Avatar
Equick ERP
Jawaban Terbai

Hello Lars 

please check the below link. This will helps you.

https://apps.odoo.com/apps/modules/13.0/eq_cancel_mrp_orders/




0
Avatar
Buang
Avatar
Quang Huynh
Jawaban Terbai

Hi all,

    I want to delete MO and the all child MOs also, how can I do?

    It means that delete all related with parent MO

Please help

Thanks

0
Avatar
Buang
Avatar
Martin Akman
Jawaban Terbai

I had the same problem, and found a way to delete it by modifying the database directly (Community v11).  No easy way it seems.

Be very careful if you attempt this, you can destroy your database if its not done correctly.

This may also have some side effects that I am not aware of.

You need to first cancel all the inventory moves for the manufacturing order, there is an 'Inventory Moves' button on the manufacturing order in odoo which lets you delete the records. 

Then this is the hard part, maybe.  Login to the database via a postgres client program, how you do this depends largely on your installation and may not be possible in cloud based installs. I just login using psql over ssh. Locate the record in the mrp_production table. It seems the number in the MO/00001 relates to the id of the record, so that would id = 1, for me at least. But a query like this should find it and tell you the id of it:

     select * from mrp_production where name = 'MO/00001';

or for just the id

select id from mrp_production where name = 'MO/00001';

Then you can cancel the manufacturing order with the following query, using the id you found in the previous query:

update mrp_production set state = 'cancel' where id = [ID];

for example:

update mrp_production set state = 'cancel' where id = 1;

Then you can delete the manufacturing order via the usual way using odoo.

Anyway may not be for everyone, but it seemed to work for me.


0
Avatar
Buang
Lars Aam
Penulis

Oh. No. I use Enterprise edition on Odoo SAAS. Cannot access the database this way.

But the issue was expereinced in a test database. In production it has not happened - yet.

We need a solution from Odoo. And they say that there are imporvements in V13.

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
Close Manufacturing order even not fullly produced
manufacturing enterprise V12
Avatar
0
Agu 19
3666
Settings of Manufacturing is not displayed values correctly
manufacturing enterprise v14
Avatar
Avatar
1
Agu 23
2747
11.0+E Manufacturing: Reverse an iventory transactions.
manufacturing enterprise v11.0
Avatar
Avatar
2
Okt 18
3282
how to get same product price for different currency in odoo? Diselesaikan
multicurrency enterprise ecommerce V12
Avatar
Avatar
Avatar
2
Des 19
5984
Master Production Scheduling in "Manufacturing module"
manufacturing
Avatar
Avatar
1
Nov 25
131
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