Guys please help this is my code
Object[] l = { "is_company", "=", false };
Object[] filter = { l };
odoo = new OdooUtility("http://10.10.35.7:8069", "object");
SearchIdTask = odoo.exec(listner, "db","1","password","res.partner","search",filter);
and here is the exec methodpublic Long exec (XMLRPCCallback listner, String db, String uid, String password,String objects, String method, Object[] data){
Long id = client.callAsync(listner,"execute_kw",db,Integer.parseInt(uid),password,objects,method,data);
return id;
}
pls I've been looking at this for hours i think there is something wrong with the filter :'(