Could it be that as the workflows are removed in odoo 10 i can't use the
models.exec_workflow(.....
xmlrpc API whithout actually creating a workflow myself ? All standard ones are removed starting version 9
If so are there any other ways of calling a "button" using xmlrpc api in version 10 ?
And how do i call the method associated from the api using xmlrpc:
This is the methodi try to call, I don't find it as a workflow
@api.multi
def do_new_transfer(self):
I have been trying:
models.execute_kw(db, uid, password, 'stock.picking', 'do_new_transfer', pick_id[0])