I have a method that has parameters as recordset like this
def some_method(self, picking_id):
print(picking_id.name)
is there any way to call this method with XML-RPC and add a parameter as recordset? because if I do this.
rpc_object.execute(
dbname, uid, user_pw, "delivery.carrier", "some_method", [], [2394]
)
when my method is called picking_id is [2394] and not recordset.