0
votes

I want to create a new module in Odoo 10.0 .

In that module there is many requests to another web application using Restful calls.

Is AngularJS compatible with Odoo? I want to use it to handle requests and pass data from response to the view

1
This link may interest you.Mistalis
thank you it's really interestingTaha
As it helps you, I posted it has an answer. :-)Mistalis

1 Answers

3
votes

The real answer is: not really.

Odoo is not HTTP friendly: every request shoud be POST, session_id should be added in the body, there some other stuff which should be added in each request...


This module developed by akretion provide you a way to call Odoo webservices from AngularJS.

I think it may solve your issue.