This question has been flagged
1 Reply
3432 Views

I am creating the partner and approving from xmlrpc, the problem is when ever an exception or error is raised from approve customer method the execution stops, but the partner has been created.

If an error raised the transaction has to rolled back, how to achieve this scenario ?

Avatar
Discard
Best Answer

Each xmlrpc call is executed within its own transaction.  Due to the statelesness of xmlrpc there is no safe way to handle this in a good way.

You can do either your own cleanup ( like delete newly create partner object in case an exception is thrown ) from the xmlrpc api.

Another way is to create an extra method on the res.partner which does all actions in one call.  This way you can call the method via xmlrpc and benfit from the exception handling in odoo.

 

Regards,

Jos

Avatar
Discard