PHP code example of mihpa / odata-1c-php

1. Go to this page and download the library: Download mihpa/odata-1c-php 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/ */

    

mihpa / odata-1c-php example snippets


use OData\Client\OdataConnection;

$client = new OdataConnection('http://<имя хоста OData>/<имя базы данных>/odata/standard.odata/');

// Если используется дайджест-проверки подлинности IIS
$client->setAuth('<имя пользователя>', '<пароль>');

// Если подключение должно происходить через прокси-сервер
$client->setProxy('<имя хоста прокси>', '<номер порта>');

// Если требуется увеличить время ожидания отклика (по умолчанию 300 секунд)
$client->setTimeout(600);

$customer = $client->{'Справочник/Контрагенты'}
    ->get('9ffb357b-8431-11ec-8105-005056baf506');

$documents = $client->{'Документ/ПоступлениеТоваровУслуг'}
    ->select([
        'Ref_Key',
        'DataVersion',
        'Number',
        'Date',
        'Posted',
        'ВидОперации',
        'Товары/Сумма',
        'Товары/СуммаНДС',
        'Услуги/Сумма',
        'Контрагент/Ref_Key',
        'Контрагент/Description',
        'ДоговорКонтрагента/Номер',
        'ДоговорКонтрагента/Дата',
    ])
    ->expand([
        'Контрагент',
        'ДоговорКонтрагента',
    ])
    ->filter('not (DeletionMark)')
    ->orderby('Date', 'desc')
    ->get();

$documents = $client->{'Документ/ПоступлениеТоваровУслуг'}
    ->top(50)
    ->offset(200)
    ->get();

$customer = $client->{'Справочник/Контрагенты'}
    ->create(
        [
            'Description'=>'Тестовый контрагент',
        ]
    );

$customer = $client->{'Справочник/Контрагенты'}
    ->update(
        [
            'Description'=>'Изменённый контрагент',
        ],
        'c70666f7-ae3a-11e5-80ce-005056baf506'
    );

$customer = $client->{'Справочник/Контрагенты'}
    ->delete('c70666f7-ae3a-11e5-80ce-005056baf506');

$customer = $client->{'Справочник/Контрагенты'}
    ->undelete('c70666f7-ae3a-11e5-80ce-005056baf506');

$client->{'Справочник/Контрагенты'}
    ->deletePermanently('c70666f7-ae3a-11e5-80ce-005056baf506');

$document = $client->{'Документ/ПоступлениеТоваровУслуг'}
    ->post('08e15d09-d48e-11ed-a84a-0050569ad97e');

$document = $client->{'Документ/ПоступлениеТоваровУслуг'}
    ->unpost('08e15d09-d48e-11ed-a84a-0050569ad97e');
 bash
$ composer