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

How to Update the Record in Wizard?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
wizardxmlpyhtonodoo12
3 Replies
11652 Tampilan
Avatar
Harshit Trivedi

I am using Odoo v12, I have one requirement to update the qty to wizard view. I have added two button Plus and Minus and but when I try to update qty using button it is not working. Here I attach the Screenshot my wizard 



  Here button code in xml.

 <button name="action_plus" icon="fa-plus-square" type="object" style="float:right" />

  And qty Increment Code in 

@api.multi

def action_plus(self):

    for record in self:

        record.qty  = record.qty + 1

    return {"type": "set_scrollTop"}


   So My Qty not to increasing and decreasing using that button 


0
Avatar
Buang
Avatar
Vincent
Jawaban Terbai

Hi, have you solved this problem? may i know how you can solved this problem because right now i got same problem like you. Thank you

0
Avatar
Buang
Avatar
La Jayuhni Yarsyah
Jawaban Terbai

How do you display the wizard form ??
Are you save the wizard record first then show the record at pop up wizard  OR you just set new form with some default value ??

Example:

  1.  https://pastebin.com/ymzMcQFF

  2. \https://pastebin.com/ymzMcQFF



Based on your syntax (def action_plus(self):),, self pointed to the object (including record) that to be executed.. so if you use style no #2 you can't do that (increase/decrease) only just by the python,, but if you use style no #1 it could be done because when you call the button the record has been saved at database and odoo know wich record to be updated..
You can test you code with "print(self)", or logger to the command line,, and see what the result. I guess the result will be a empty object...
Ex:

@api.multi

def action_plus(self):

   # DO THIS FOR SEE "SELF" VALUE--->  print(self)
   # OR DO THIS --> _logger.info(self) # IF YOU USE logger object

    for record in self:

        record.qty  = record.qty + 1


But i think its better you to handle it by javascript,,  then user can save it with save button..

Regards

La Jayuhni Yarsyah

0
Avatar
Buang
Avatar
faOtools
Jawaban Terbai

Hi, it seems it is because your page is not refreshed after the action is done. If you reload the page, it should be updated. 

To programatically refresh the page, try something like:

return {
    'type': 'ir.actions.client',
    'tag': 'reload',
}

You can also play around with 'always_reload' and 'reload_on_button' options for the QTY field. Have a look at: https://www.odoo.com/forum/ayuda-1/question/what-behavior-with-options-always-reload-5566


Finally, I guess it was a misprint, but anyway: the decorator is @api.multi. In your question you missed 'i' at the end

0
Avatar
Buang
Harshit Trivedi
Penulis

Thank You for Answering but I have not to need the reload page every plus qty or minus qty and also you have given the link not working and In that case, it is working for me Odoo V11 version but the same thing Odoo V11 to V12 it is not working.

faOtools

As for reloading the page: I'm afraid you have to because of how buttons in embedded tree view work. Each time you pressed the button on a form view the form is reloaded, however, when you pressed the button on a embedded tree view, a form is not updated. So, you need to do that manually.

Otherwise, you need to implement JavaScript methods to make the update partially.

As for the reload options: I didn't try it by myself, so can't be sure. However, in the Odoo 12 core there are many places where it is used

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
Element cannot be located in parent view
xml odoo12
Avatar
0
Feb 22
2530
Prevent wizard from being closed odoo 12
wizard odoo12
Avatar
Avatar
Avatar
2
Sep 20
6807
ParseError: "External ID not found in the system?
wizard xml buttons wizards odoo12
Avatar
0
Des 19
3
How to receive value from wizard before saving it
wizard odoo12
Avatar
Avatar
1
Sep 19
7353
AssertionError: Element data has extra content: record, line 3 Diselesaikan
xml odoo12
Avatar
Avatar
Avatar
6
Agu 19
11140
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