-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
odoo connection #17
Comments
If a Moreover after a quick look at the api, shouldn't it be |
Hi thanks for the help, about the |
Assuming final test = xml_rpc
.call(
url,
'execute_kw',
[
db,
uid,
pass,
'res_partner',
'search',
[
[
['is_company', '=', true]
]
],
])
.then((result) => print(result))
.catchError((error) => print(error)); You should try to launch your program in debug mode and follow step by step to understand where this error is coming from. |
Fixed that error, turns out the |
Glad you find the bug :) |
Hi, I'm trying to connect a Flutter app to odoo API and I can't seem to be able to make a call to a database I'm trying to use this code,
but I get the No encoder to encode the value I'll leave a link to the odoo documentation for reference.
https://www.odoo.com/documentation/15.0/developer/misc/api/odoo.html
The text was updated successfully, but these errors were encountered: