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
    • Discuss
    • 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

Open ERP v7 - How do I execute a wizard via XML RPC?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
xmlrpc7.0wizards
2 Replies
14452 Tampilan
Avatar
Sam Davey

I'm integrating a PHP application with OpenErp and I am able to easily hook up via XMLRPC. Given the GTK client used to operate via XMLRPC (pre v7) its no surprise that i can achieve nearly anything through XMLRPC.

I've got the simple operations sorted; create, search, read etc. I can run any particular method using the execute call and i can trigger workflows using exec_workflow.

The missing part of the jigsaw is wizards. I can see that wizards changed in OpenERP 7.0 from wizards into TransientModels. I can also find info about how the 'wizard' operation in XMLRPC has been deprecated in OpenERP version 7 and I once saw that it is now part of the relevant objects orm although I can't find that article now.

But I can't find any examples or information about how to execute a wizard in OpenERP version 7 via XMLRPC.

The actual wizard I want to run is linked to the button 'Return Products' which is on a Delivery Order once it has been delivered.

How can I mimic the web client User Interface process of pressing the 'Return Products' button and filling in the corresponding form that pops up?

Does anyone have any examples to achieve this? Any programming language will do, I'll port it into PHP myself once I know how it works.

1
Avatar
Buang
Avatar
Sam Davey
Penulis Jawaban Terbai

I'm not surprised no one has answered this. There is no magic 'run wizard' XMLRPC call. It's a series of calls.

As per the documentation "Everything done in the GTK or web client in OpenERP is through XML/RPC webservices. Start openERP GTK client using ./openerp-client.py -l debug_rpc (or debug_rpc_answer) then do what you want in the GTK client and watch your client logs, you will find out the webservice signatures."

I was thrown by this as I can't use the client with version 7. But of course the web client essentially does exactly the sae thing as the GTK client so I just needed to turn on debugging on the server and watch the logs for the webservice signatures.

So to do this you just add "log_level = debug_rpc_answer" to your server config file (openerp-server.conf in my instance)

Once I'd done that I could see what was going on and replicated it in PHP.

I'm not going to go into detail here. If you need to do the same then you just need to get to 'debug_rpc_answer' and start analysing the webservice signatures.

But for completeness the process looks like this

  • Fill in the context for the call
  • Call default_get to get the data for the wizard
  • Alter the data as needed then call create, this creates an object in memory and returns an identifier for it
  • In my case I then call 'create_returns' which converts the in memory object into the corresponing incoming shipment record

Heres how it looks although I've stripped out some bits

// First build the context of the request, i.e. in my case the Delivery Order I am creating a return for
$activeId = 7;

$args = array(
    array(
        'product_return_moves', 
        'invoice_state'
    ),
);

$context = array(
    "context" => array(
        'active_id'=> $activeId,
        'active_ids'=> array($activeId),
        'active_model'=> 'stock.picking.out',
        contact_display'=> 'partner_address',
        'default_type'=> 'out',
        'lang'=> 'en_GB',
        'search_disable_custom_filters'=> True,
        'tz'=> 'Europe/London',
        'uid'=> 1,
    ),  
);

// Call 'default_get' which returns all the data that gets filled in the UI when you click 'Return Products'

$results = $client->call('execute_kw', array($dbName, $user, $pwd, 'stock.return.picking', 'default_get', $args, $context));

$previousMoves = $results['product_return_moves'];

// Do stuff with previousMoves to build the actual productReturnMoves needed
... omitted for brevity ...

$args = array(
        array(
            'invoice_state' => 'none',
            'product_return_moves' => $productReturnMoves,
        ),
    );

$results = $client->call('execute_kw', array($dbName, $user, $pwd, 'stock.return.picking', 'create', $args, $context));

// An identifier for this 'in memory' (TransientModel) object is returned
$wizardId = $results;

// Call the method that converts the 'in memory' (TransientModel) object into corresponding object
$args = array(
        array($wizardId),
        $context["context"],
    );

$blank = array();

$results = $client->call('execute_kw', array($dbName, $user, $pwd, 'stock.return.picking', 'create_returns', $args, $blank));

Easy... Or not... depending on how impressed or frustrated you are feeling about OpenERP today :-)

4
Avatar
Buang
Timothy Solomon

Thanks for sharing your answer :) Wizards are just temporary models to work on other models - so best to look at what the wizard does (eg create a incoming shipping order when you click on "return products"). I usually figure out what the code does and then try and reproduce it with RPC, but checking the rpc log is a good idea!

Avatar
florent.uagolf@gmail.com
Jawaban Terbai

Hi !

Thanks both of you !

So I created a multiple action automated task :
- 1st : send email with quotation
- 2st : change field 'state' to 'sent' but this cannot be done directly with the update so I need to do something like this in python :
request.env['sale.order'].sudo().write({'state':'sent'})

Is that right ?

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
OpenERP 7.0 WebService : search_read()
php xmlrpc 7.0 webservice
Avatar
Avatar
2
Jun 15
7377
xmlrpc Error when attempting to connect to my local instance Diselesaikan
xmlrpc
Avatar
Avatar
Avatar
3
Jul 25
4568
Cannot marshal None unless allow_none is enabled
xmlrpc
Avatar
1
Okt 24
3227
How to run a method from external api as the superuser
xmlrpc
Avatar
Avatar
1
Apr 24
3293
<methodName>execute</methodName>
xmlrpc
Avatar
0
Sep 23
2594
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