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.