Not sure my question was clear, but the answer you find here:
As I understand workflows has moved to methods in std odoo10, nothing is left.
You can still create new ones if you want as the functionality is there. The concept is not removed even if standard odoo is not using this functionality anymore.
The xmlrpc workflow call could be used but as there are no workflows there anymore you need to create your own.
If you want to press a button form stock_picking model u can use the execute_kw and call the method instead
--- Snipet ---
@api.multi
def do_new_tranfer(self):
Answer is here:
https://www.odoo.com/forum/help-1/question/xmlrpc-confirm-picking-in-odoo-10-117802
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])