inluxc/openerp-php-connector

PHP Connector to Openerp

0.1.0 2017-02-10 15:27 UTC

This package is not auto-updated.

Last update: 2024-05-12 00:32:34 UTC


README

MOST POPULAR & EASY ODOO/OpenERP PHP CONNECTOR

[Its support SSL enabled Odoo/OpenERP Instances too.]

XMLRPC Connecotor communicate with OpenERP Server 6 and 7, 8.0 version too. One of tested and well worked PHP Connector. AGPL V3

We had been successful delived many mobile apps, eCommerce apps and many other business apps, by using this simplest, powerful connector.

License: AGPL V3, No exception, by using this lib, you can keep private your code/modules.

Kindly contact us for integration & implementation, We are happy to serve you.

Powered By SnippetBucket.com

Tejas Tank.

Email: snippetbucket@gmail.com or tejas.tank.mca@gmail.com website: http://www.snippetbucket.com/

Contact us for support

Skype Us: live.snippetbucket or http://snippetbucket.com/aboutus/

Company or Developers

Create own UI and Module Integrated thing with this library & you get own tradmarked front-end brand.

Example Code

$instance = new OpenERP();

$x = $instance->login("demo", "demo", "demo", "http://demo.snippetbucket.com/xmlrpc/");

$fields = array('id','name','model');

$ids = range(1,2);

$partners = $instance->read($ids, $fields, "res.partner");

print_r($partners);

Below example to execute workflow.

=========== example to use workflow,

$x = $rpc->login(....);

if($x){

 $rpc->workflow('sale.order', 'order_confirm',  $sale_order_id);
 $rpc->workflow('sale.order', 'manual_invoice',  $sale_order_id);
 .....
 // this way can execute any workflow or workflow signals...

} // Similar button_click method also added.

Download XMLRPC

http://goo.gl/43OVxT

Visit : www.SnippetBucket.com