PHP code example of igorgoroun / openerp-client

1. Go to this page and download the library: Download igorgoroun/openerp-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

igorgoroun / openerp-client example snippets


#!php


use Delmar\OpenERP\OpenERP;
$erp = new OpenERP('http://127.0.0.1:8089', 'utf-8');
$erp->login('db_test', 'myLogin', 'myPassword'); // return user id, if success

#!php


$erp->login('db_test', 'myLogin', 'myPassword');
$partner = ['name' => 'John', 'email' => '[email protected]'];
$erp->create('res.partner', $partner); // return record ID, if it created

#!php


$erp->login('db_test', 'myLogin', 'myPassword');
$offset = 0; // default
$limit = 1000; // default
$criteria= [['name', '=', 'John'], ['email', '=', '[email protected]']];
$erp->search('res.partner', $criteria, $offset, $limit); // return ID array


#!php


$erp->login('db_test', 'myLogin', 'myPassword');
$readColumns = ['name', 'email']; // default [] equal 'SELECT * ...'
$ids = [30, 31];
$erp->read('res.partner', $ids, $readColumns); // return array of records

#!php


$erp->login('db_test', 'myLogin', 'myPassword');
$columns = ['name' => 'Peter', 'email' => '[email protected]'];
$ids = [30, 31];
$erp->write('res.partner', $ids, $columns); // return true

#!php


$erp->login('db_test', 'myLogin', 'myPassword');
$ids = [30, 31];
$erp->execute('stock.picking', 'test_verified', $ids, $kvargs); // return true

#!php


$erp->login('db_test', 'myLogin', 'myPassword');
$ids = [30, 31];
$erp->unlink('res.partner', $ids); // return true