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

Hi, please help me my problem is treeview can't update value. How to fix? (odoo10)

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
treeviewodoo10
4 Replies
4487 Tampilan
Avatar
delgertsetseg

Here is my code 

 @api.multi

def button_plan(self):

quantity = []

res = super(MrpProduction, self).button_plan()

for production in self:

planned_date = fields.Datetime.from_string(self.date_planned_start)

production_values = {'date_planned_start_wo': False,

'date_planned_finished_wo': False,

'quantity': 0}

values = {}

print quantity

for workorder in production.workorder_ids:

date_start = planned_date

date_end = date_start + timedelta(minutes=workorder.duration_expected)

values['date_planned_start'] = fields.Datetime.to_string(date_start)

values['date_planned_finished'] = fields.Datetime.to_string(date_end)

values['quantity'] = fields.Float(quantity)

for operation in self.routing_id.operation_ids:

if operation.compute_equals_order_qty == True:

quantity = self.product_qty

print 'quantity', quantity

if operation.compute_equals_always_one == True:

quantity = 1.0

print 'quantity', quantity

if operation.compute_equals_workcenter == True:

quantity = operation.workcenter_quantity

print 'quantity', quantity

workorder.qty_workorder = quantity

print 'workorder.qty_workorder ::::',workorder.qty_workorder

workorder.write(values)

production_values['date_planned_finished_wo'] = fields.Datetime.to_string(planned_date)

production.write(production_values)

# production.write(values)

return res


The terminal output is 


quantity 1.0

quantity 35.0

quantity 56.0

workorder.qty_workorder :::: 56.0

2018-01-11 09:37:55,163 15380 WARNING odoo10 odoo.models: mrp.workorder.write() with unknown fields: quantity

quantity 1.0

quantity 35.0

quantity 56.0

workorder.qty_workorder :::: 56.0

2018-01-11 09:37:55,174 15380 WARNING odoo10 odoo.models: mrp.workorder.write() with unknown fields: quantity

quantity 1.0

quantity 35.0

quantity 56.0

workorder.qty_workorder :::: 56.0


Right output is: 

workorder.qty_workorder is 1, 35, 56 

0
Avatar
Buang
Anil Kesariya

Your code is not properly structured, it is difficult to understand.

delgertsetseg
Penulis

Sorry, now understanding ?

Avatar
Mayank Gosai
Jawaban Terbai

Hello,

Try this:

@api.multi

def button_plan(self):

quantity = 0

res = super(MrpProduction, self).button_plan()

for production in self:

    for workorder in production.workorder_ids:     

         for operation in self.routing_id.operation_ids:

            if operation.compute_equals_order_qty == True:

                quantity = self.product_qty

            if operation.compute_equals_always_one == True:

                    quantity = 1.0

            if operation.compute_equals_workcenter == True:

                    quantity = operation.workcenter_quantity   

            workorder.qty_workorder = quantity

     return res


In your case , you applied 'workorder.qty_workorder = quantity' outside loop.
Make that happen inside loop.

Thanks,

Mayank Gosai

0
Avatar
Buang
delgertsetseg
Penulis

I fix this error,

workorder.write({'qty_workorder': quantity}) Thanks

Avatar
delgertsetseg
Penulis Jawaban Terbai

 @api.multi

def button_plan(self):

quantity = 0

res = super(MrpProduction, self).button_plan()

for production in self:

    for workorder in production.workorder_ids:     

         for operation in self.routing_id.operation_ids:

            if operation.compute_equals_order_qty == True:

                quantity = self.product_qty

            if operation.compute_equals_always_one == True:

                    quantity = 1.0

            if operation.compute_equals_workcenter == True:

                    quantity = operation.workcenter_quantity   

         workorder.qty_workorder = quantity

     return res

------------------------------------------------------Output ---------------------------------------

quantity 1.0

quantity 35.0

quantity 56.0

workorder.qty_workorder :::: 56.0

quantity 1.0

quantity 35.0

quantity 56.0

workorder.qty_workorder :::: 56.0

quantity 1.0

quantity 35.0

quantity 56.0

workorder.qty_workorder :::: 56.0

---------------------------------------Righ Output --------------------------------

workorder.qty_workorder =1

workorder.qty_workorder=35

workorder.qty_workorder=56 

Sorry, now understand?




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
Prevent create and delete on a One2many tree view Diselesaikan
treeview one2many odoo10
Avatar
1
Jul 20
9412
How to add serial number in Tree view in odoo 10 Diselesaikan
treeview serial_number odoo10
Avatar
1
Okt 19
5260
[odoo10] : How to load kanban view on click of tree view's record of different model?
treeview kanban odoo10
Avatar
0
Agu 18
6519
How can I inherit a treeview and make it editable, without altering the parent treeview?
treeview inheritance odoo10
Avatar
Avatar
1
Jul 18
8337
How we added link in Tree view in odoo
treeview link odoo10
Avatar
Avatar
1
Jun 18
9218
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