robroypt/odoo-client
Composer 安装命令:
composer require robroypt/odoo-client
包简介
A PHP Client for Odoo using Ripcord RPC library (as used in Odoo Web API docs)
README 文档
README
OdooClient is an Odoo client for PHP. It is inspired on OpenERP API from simbigo and OdooClient from jacobsteringa and uses a more or less similar API.
However, instead of its own XML-RPC client or the Zend XML-RPC libraries it uses the Ripcord RPC library as implemented by DarkaOnline -- this is the library used in the Odoo Web Service API documentation.
Supported versions
This library should work with Odoo 8 or later. If you find any any incompatibilities, please create an issue or submit a pull request.
Usage
Instantiate a new client.
use OdooClient\Client; ........ $url = 'example.odoo.com/xmlrpc/2'; $database = 'example-database'; $user = 'user@email.com'; $password = 'yourpassword'; $client = new Client($url, $database, $user, $password);
For the client to work you have to include the /xmlrpc/2 part of the url.
xmlrpc/2/common endpoint
Getting version information.
$client->version();
There is no login/authenticate method. The client does authentication for you, that is why the credentials are passed as constructor arguments.
xmlrpc/2/object endpoint
Search for records.
$criteria = [ ['customer', '=', true], ]; $offset = 0; $limit = 10; $client->search('res.partner', $criteria, $offset, $limit);
Search and count records.
$criteria = [ ['customer', '=', true], ]; $client->search_count('res.partner', $criteria);
Reading records.
$ids = $client->search('res.partner', [['customer', '=', true]], 0, 10); $fields = ['name', 'email', 'customer']; $customers = $client->read('res.partner', $ids, $fields);
Search and Read records.
$criteria = [ ['customer', '=', true], ]; $fields = ['name', 'email', 'customer']; $customers = $client->search_read('res.partner', $criteria, $fields, 10);
Creating records.
$data = [ 'name' => 'John Doe', 'email' => 'foo@bar.com', ]; $id = $client->create('res.partner', $data);
Updating records.
// change email address of user with current email address foo@bar.com $ids = $client->search('res.partner', [['email', '=', 'foo@bar.com']], 0, 1); $client->write('res.partner', $ids, ['email' => 'baz@quux.com']); // 'uncustomer' the first 10 customers $ids = $client->search('res.partner', [['customer', '=', true]], 0, 10); $client->write('res.partner', $ids, ['customer' => false]);
Deleting records.
$ids = $client->search('res.partner', [['email', '=', 'baz@quuz.com']], 0, 1); $client->unlink('res.partner', $ids);
License
MIT License. Copyright (c) 2017 Rob Roy.
robroypt/odoo-client 适用场景与选型建议
robroypt/odoo-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 51.86k 次下载、GitHub Stars 达 21, 最近一次更新时间为 2017 年 03 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「rpc」 「xml」 「xmlrpc」 「odoo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 robroypt/odoo-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 robroypt/odoo-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 robroypt/odoo-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A collection of server-side addons that might be of use for development of xml-rpc (and json-rpc) based applications
Microservice RPC through message queues.
package of the library classes to provide XmlRpc routines for accessing revive ad servers
Load DOM document safety
Added a method to Laravel response for handling xml response and also converting Eloquent return to XML.
Control Nginx as a reverse proxy through plinker RPC
统计信息
- 总下载量: 51.86k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 21
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-22