跳至内容
菜单
此问题已终结
1 回复
12134 查看

Is there a way to integrate php with odoo? any help please...

形象
丢弃
最佳答案

Hi Avini,

Yes there is. You can connect to Odoo through XML-RPC calls. PHP is also an option for this (along with Python, Ruby and Java). 
You can find the full docs here: https://www.odoo.com/documentation/8.0/api_integration.html
For example to login through PHP:

$common = ripcord::client("$url/xmlrpc/2/common"); 
$common->version();
{
    "server_version": "8.0",
    "server_version_info": [8, 0, 0, "final", 0],
    "server_serie": "8.0",
    "protocol_version": 1,
}

So you could get about everything you'd like through PHP from your Odoo!

Yenthe

形象
丢弃
编写者

Thank for your quick reply yenthe. does that mean we can replace python using php?

No problem Avini! Technically you should be able to do everything in PHP just like you could in Python. The only downside is that you would have to re-develop everything in PHP while by default there is a website interface made with Python.

相关帖文 回复 查看 活动
1
10月 15
4029
4
7月 16
3935
1
3月 16
4061
0
11月 15
3536
odoo backend 已解决
3
10月 15
6872