1. Go to this page and download the library: Download devgroup/php-dreamkas 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/ */
devgroup / php-dreamkas example snippets
use DevGroup\Dreamkas\Api;
use DevGroup\Dreamkas\CustomerAttributes;
use DevGroup\Dreamkas\exceptions\ValidationException;
use DevGroup\Dreamkas\Payment;
use DevGroup\Dreamkas\Position;
use DevGroup\Dreamkas\Receipt;
use DevGroup\Dreamkas\TaxMode;
use GuzzleHttp\Exception\ClientException;
/***
* 123 - ID кассы
* MODE_MOCK - режим, может быть MODE_MOCK, MODE_PRODUCTION, MODE_MODE_DEBUG
*/
$api = new Api('ACCESS_TOKEN из профиля', 123, Api::MODE_MOCK);
$receipt = new Receipt();
$receipt->taxMode = TaxMode::MODE_SIMPLE;
$receipt->positions[] = new Position([
'name' => 'Билет - тест',
'quantity' => 2,
'price' => 210000, // цена в копейках за 1 шт. или 1 грамм
]);
$receipt->payments[] = new Payment([
'sum' => 420000, // стоимость оплаты по чеку
]);
$receipt->attributes = new CustomerAttributes([
'email' => '[email protected]', // почта покупателя
'phone' => '74996776566', // телефон покупателя
]);
// Можно посчитать сумму автоматом
// $receipt->calculateSum();
// А можно завалидировать чек
// $receipt->validate();
$response = [];
try {
$response = $api->postReceipt($receipt);
} catch (ValidationException $e) {
// Это исключение кидается, когда информация в чеке не правильная
} catch (ClientException $e) {
echo $e->getResponse()->getBody();
// Это исключение кидается, когда при передачи чека в Дрикас произошла ошибка. Лучше отправить чек ещё раз
// Если будут дубли - потом отменяйте через $receipt->type = Receipt::TYPE_REFUND;
}
composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.