forked from orangedata-official/PHP-OrangeData-official
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorangedata_client.php
567 lines (546 loc) · 30.5 KB
/
orangedata_client.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<?php
/**
* OrangeDataClient PHP
* Version of PHP: 5.6.6+
* @version 2.1.1
*/
namespace orangedata;
use \DateTime;
use \Exception;
class orangedata_client {
const MAX_ORDER_ID_LENGTH = 64;
private $order_request;
private $correction_request;
private $api_url;
private $inn;
private $debug_file;
private $debug = false;
private $ca_cert = false;
private $private_key_pem;
private $client_pkey;
private $client_cert;
private $client_cert_pass;
/**
* @param mixed $inn
* @param mixed $api_url
* @param string $sign_pkey - Path to signing private key or his PEM body
* @param string $client_key - Path to client private key
* @param string $client_cert - Path to Client 2SSL Certificate
* @param string $ca_cert - Path to CA Certificate
* @param string $client_cert_pass - Password for Client 2SSL Certificate
*/
public function __construct($inn, $api_url, $sign_pkey, $client_key, $client_cert, $ca_cert, $client_cert_pass) {
$this->inn = (string) $inn;
$this->api_url = $api_url;
$this->private_key_pem = (string) $sign_pkey;
$this->client_pkey = (string) $client_key;
$this->client_cert = (string) $client_cert;
$this->ca_cert = (string) $ca_cert;
$this->client_cert_pass = (string) $client_cert_pass;
$this->debug_file = getcwd() . '/curl.log';
}
/**
* create_order(a, b, c, d, e*, f*) - Создание чека
* @param string $id (a) - Идентификатор документа (Строка от 1 до 64 символов)
* @param int $type (b) - Признак расчета (Число от 1 до 4):
* 1 - Приход
* 2 - Возврат прихода
* 3 - Расход
* 4 - Возврат расхода
* @param string $customerContact (c) - Телефон или электронный адрес покупателя (Строка от 1 до 64 символов)
* @param int $taxationSystem (d) - Система налогообложения (Число от 0 до 5):
* 0 – Общая, ОСН
* 1 – Упрощенная доход, УСН доход
* 2 – Упрощенная доход минус расход, УСН доход - расход
* 3 – Единый налог на вмененный доход, ЕНВД
* 4 – Единый сельскохозяйственный налог, ЕСН
* 5 – Патентная система налогообложения, Патент
* @param string $group (e*) - Группа устройств, с помощью которых будет пробит чек (не всегда является обязательным полем)
* @param $key (f*) - Название ключа который должен быть использован для проверки подпись (Строка от 1 до 32 символов либо null)
* @return $this
* @throws Exception
*/
public function create_order($id, $type, $customerContact, $taxationSystem, $group = null, $key = null) {
$this->order_request = new \stdClass();
$this->order_request->id = (string) $id;
$this->order_request->inn = $this->inn;
$this->order_request->group = $group ?: 'Main';
if ($key) $this->order_request->key = $key;
$this->order_request->content = new \stdClass();
if (is_int($type) and preg_match('/^[1234]$/', $type)) {
$this->order_request->content->type = $type;
} else {
throw new Exception('Incorrect order Type' . PHP_EOL);
}
$this->order_request->content->positions = array();
$this->order_request->content->checkClose = new \stdClass();
$this->order_request->content->checkClose->payments = array();
if (preg_match('/^[012345]$/', $taxationSystem)) {
$this->order_request->content->checkClose->taxationSystem = $taxationSystem;
} else {
throw new Exception('Incorrect taxationSystem' . PHP_EOL);
}
if (filter_var($customerContact, FILTER_VALIDATE_EMAIL) or preg_match('/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/', $customerContact)) {
$this->order_request->content->customerContact = $customerContact;
} else {
throw new Exception('Incorrect customer Contact' . PHP_EOL);
}
return $this;
}
/**
* add_position_to_order(a, b, c, d, e*, f*) - Добавление позиций
* @param float $quantity (a) - Количество предмета расчета
* @param mixed $price (b) - Цена за единицу предмета расчета с учетом скидок и наценок
* @param int $tax (c) - Система налогообложения (Число от 1 до 6):
* 1 – ставка НДС 18%
* 2 – ставка НДС 10%
* 3 – ставка НДС расч. 18/118
* 4 – ставка НДС расч. 10/110
* 5 – ставка НДС 0%
* 6 – НДС не облагается
* @param string $text - Наименование предмета расчета (Строка до 128 символов)
* @param $paymentMethodType (e*) - Признак способа расчета (Число от 1 до 7 или null. Если передано null, то будет отправлено значение 4):
* 1 – Предоплата 100%
* 2 – Частичная предоплата
* 3 – Аванс
* 4 – Полный расчет
* 5 – Частичный расчет и кредит
* 6 – Передача в кредит
* 7 – оплата кредита
* @param $paymentSubjectType (f*) - Признак предмета расчета (Число от 1 до 13 или null. Если передано null, то будет отправлено значение 1):
* 1 – Товар
* 2 – Подакцизный товар
* 3 – Работа
* 4 – Услуга
* 5 – Ставка азартной игры
* 6 – Выигрыш азартной игры
* 7 – Лотерейный билет
* 8 – Выигрыш лотереи
* 9 – Предоставление РИД
* 10 – Платеж
* 11 – Агентское вознаграждение
* 12 – Составной предмет расчета
* 13 – Иной предмет расчета
* @return $this
* @throws Exception
*/
public function add_position_to_order($quantity, $price, $tax, $text, $paymentMethodType = null, $paymentSubjectType = null) {
if (is_numeric($quantity) and is_numeric($price) and preg_match('/^[123456]{1}$/', $tax) and mb_strlen($text) < 129) {
$position = new \stdClass();
$position->quantity = (float) $quantity;
$position->price = (float) $price;
$position->tax = $tax;
$position->text = $text;
$this->order_request->content->positions[] = $position;
} else {
throw new Exception('Invalid Position Quantity, Price, Tax or Text' . PHP_EOL);
}
if ((preg_match('/^[1-7]$/', $paymentMethodType) or is_null($paymentMethodType)) and ( preg_match('/^[1-9]{1}$|^1[0-3]{1}$/', $paymentSubjectType) or is_null($paymentSubjectType))) {
$position->paymentMethodType = $paymentMethodType ?: 4;
$position->paymentSubjectType = $paymentSubjectType ?: 1;
} else {
throw new Exception('Invalid Position paymentMethodType or paymentSubjectType' . PHP_EOL);
}
return $this;
}
/**
* add_payment_to_order(a, b) - Добавление оплаты
* @param mixed $type (a) - Тип оплаты (Число от 1 до 16):
* 1 – сумма по чеку наличными, 1031
* 2 – сумма по чеку электронными, 1081
* 14 – сумма по чеку предоплатой (зачетом аванса и (или) предыдущих платежей), 1215
* 15 – сумма по чеку постоплатой (в кредит), 1216
* 16 – сумма по чеку (БСО) встречным предоставлением, 1217
* @param mixed $amount (b) - Сумма оплаты (Десятичное число с точностью до 2 символов после точки*)
* @return $this
* @throws Exception
*/
public function add_payment_to_order($type, $amount) {
if (preg_match('/^[1-9]{1}$|^1[0-6]{1}$/', $type) and is_numeric($amount)) {
$payment = new \stdClass();
$payment->type = (int) $type;
$payment->amount = (float) $amount;
$this->order_request->content->checkClose->payments[] = $payment;
} else {
throw new Exception('Invalid Payment Type or Amount' . PHP_EOL);
}
return $this;
}
/**
* add_agent_to_order(a, b, c, d, e, f, g, h, i) - Добавление агента
* @param $agentType (a) - Признак агента, 1057. Битовое поле, где номер бита обозначает, что оказывающий услугу покупателю (клиенту) пользователь является (Число от 1 до 127):
* 0 – банковский платежный агент
* 1 – банковский платежный субагент
* 2 – платежный агент
* 3 – платежный субагент
* 4 – поверенный
* 5 – комиссионер
* 6 – иной агент
* @param $payTOP (b) - Телефон оператора перевода, 1075 (Массив строк длиной от 1 до 19 символов, формат +{Ц})
* @param $payAO (c) - Операция платежного агента, 1044 (Строка длиной от 1 до 24 символов)
* @param $payAPN (d) - Телефон платежного агента, 1073 (Массив строк длиной от 1 до 19 символов, формат +{Ц})
* @param $payOPN (e) - Телефон оператора по приему платежей, 1074 (Массив строк длиной от 1 до 19 символов, формат +{Ц})
* @param $payON (f) - Наименование оператора перевода, 1026 (Строка длиной от 1 до 64 символов)
* @param $payOA (g) - Адрес оператора перевода, 1005 (Строка длиной от 1 до 244 символов)
* @param $payOpINN (h) - ИНН оператора перевода, 1016 (Строка длиной от 10 до 12 символов, формат ЦЦЦЦЦЦЦЦЦЦ)
* @param $supPN (i) - Телефон поставщика, 1171 (Массив строк длиной от 1 до 19 символов, формат +{Ц})
* @return $this
* @throws Exception
*/
public function add_agent_to_order($agentType, $payTOP, $payAO, $payAPN, $payOPN, $payON, $payOA, $payOpINN, $supPN) {
if ($agentType > 0 and $agentType < 128) {
$this->order_request->content->agentType = $agentType;
} else {
throw new Exception('Invalid agentType' . PHP_EOL);
}
for ($i = 0; $i < count($payTOP); $i++) {
if (!preg_match('/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/', $payTOP[$i]))
throw new Exception('Invalid paymentTransferOperatorPhoneNumbers' . PHP_EOL);
if ($i == count($payTOP) - 1) {
$this->order_request->content->paymentTransferOperatorPhoneNumbers = $payTOP;
}
}
if (strlen($payAO) > 0 and strlen($payAO) < 25) {
$this->order_request->content->paymentAgentOperation = $payAO;
} else {
throw new Exception('Invalid paymentAgentOperation' . PHP_EOL);
}
for ($i = 0; $i < count($payAPN); $i++) {
if (!preg_match('/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/', $payAPN[$i]))
throw new Exception('Invalid paymentAgentPhoneNumbers' . PHP_EOL);
if ($i == count($payAPN) - 1) {
$this->order_request->content->paymentAgentPhoneNumbers = $payAPN;
}
}
for ($i = 0; $i < count($payOPN); $i++) {
if (!preg_match('/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/', $payOPN[$i]))
throw new Exception('Invalid paymentOperatorPhoneNumbers' . PHP_EOL);
if ($i == count($payOPN) - 1) {
$this->order_request->content->paymentOperatorPhoneNumbers = $payOPN;
}
}
if (strlen($payON) > 0 && strlen($payON) < 65 and strlen($payOA) && strlen($payOA) < 245 and strlen($payOpINN) > 9 && strlen($payOpINN) != 11 && strlen($payOpINN) < 13) {
$this->order_request->content->paymentOperatorName = $payON;
$this->order_request->content->paymentOperatorAddress = $payOA;
$this->order_request->content->paymentOperatorINN = $payOpINN;
} else {
throw new Exception('Invalid paymentOperatorName, paymentOperatorAddress or paymentOperatorINN' . PHP_EOL);
}
for ($i = 0; $i < count($supPN); $i++) {
if (!preg_match('/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/', $supPN[$i]))
throw new Exception('Invalid supplierPhoneNumbers' . PHP_EOL);
if ($i == count($supPN) - 1) {
$this->order_request->content->supplierPhoneNumbers = $supPN;
}
}
return $this;
}
/**
* add_user_attribute(a, b) - Добавление дополнительного реквизита пользователя, 1084
* @param $name (a) - Наименование дополнительного реквизита пользователя, 1085 (Строка от 1 до 64 символов)
* @param $value (b) - Значение дополнительного реквизита пользователя, 1086 (Строка от 1 до 175 символов)
* @return $this
* @throws Exception
*/
public function add_user_attribute($name, $value) {
if (strlen($name) > 0 && strlen($name) < 65 and strlen($value) > 0 && strlen($value) < 176) {
$this->order_request->content->additionalUserAttribute = new \stdClass();
$this->order_request->content->additionalUserAttribute->name = $name;
$this->order_request->content->additionalUserAttribute->value = $value;
} else {
throw new Exception('Sting Name or Value is too long' . PHP_EOL);
}
return $this;
}
/**
* send_order() - Отправка чека
* @return mixed
* @throws Exception
*/
public function send_order() {
$jsonstring = json_encode($this->order_request, JSON_PRESERVE_ZERO_FRACTION);
$sign = $this->sign_order_request($jsonstring);
is_numeric($this->api_url) ? $curl = $this->prepare_curl($this->edit_url($this->api_url, TRUE)) : $curl = $this->prepare_curl($this->api_url . '/api/v2/documents/');
$headers = array(
"Content-Length: " . strlen($jsonstring),
"Content-Type: application/json; charset=utf-8",
"X-Signature: " . $sign
);
curl_setopt_array($curl, array(
CURLOPT_POST => true,
CURLOPT_HTTPHEADER => $headers,
CURLOPT_POSTFIELDS => $jsonstring
));
$answer = curl_exec($curl);
$info = curl_getinfo($curl);
switch ($info['http_code']) {
case '201':
$return = true;
break;
case '400':
$return = $answer;
break;
case '401':
throw new Exception('Unauthorized. Client certificate check is failed');
break;
case '409':
throw new Exception('Conflict. Order with same id is already exists in the system.');
break;
case '503':
$return = $answer;
break;
default:
$return = false;
break;
}
if (FALSE === $return) {
throw new Exception('Curl error: ' . curl_error($curl));
}
return $return;
}
/**
* get_order_status(a) - Проверка состояния чека
* @param string $id (a) - Идентификатор документа (Строка от 1 до 32 символов)
* @return mixed
* @throws Exception
*/
public function get_order_status($id) {
if (strlen($id) > self::MAX_ORDER_ID_LENGTH OR strlen($id) == 0) {
throw new Exception('Invalid order identifier');
}
$curl = is_int($this->api_url) ? $this->prepare_curl($this->edit_url($this->api_url, TRUE) . $this->inn . '/status/' . $id) : $this->prepare_curl($this->api_url . '/api/v2/documents/' . $this->inn . '/status/' . $id);
curl_setopt($curl, CURLOPT_POST, false);
$answer = curl_exec($curl);
$info = curl_getinfo($curl);
switch ($info['http_code']) {
case '200':
$return = $answer;
break;
case '202':
$return = TRUE;
break;
case '400':
throw new Exception('Not Found. Order was not found in the system.');
break;
case '401':
throw new Exception('Unauthorized. Client certificate check is failed');
break;
default:
$return = false;
break;
}
if (FALSE === $return) {
throw new Exception('Curl error: ' . curl_error($curl));
}
return $return;
}
private function sign_order_request($jsonstring) {
$binary_signature = "";
$r = openssl_sign($jsonstring, $binary_signature, file_get_contents($this->private_key_pem), OPENSSL_ALGO_SHA256);
if ($r) {
return base64_encode($binary_signature);
} else {
return false;
}
}
/**
* edit_url(a, b) - автоматическая генерация ссылки
* @param $port (a) - номер порта, на который шлются запросы
* @param $tag (b) - идентификатор отправки/проверки чека
* @return string
* @throws Exception
*/
private function edit_url($port, $tag) {
if ($port == 2443 or $port == 12001){
$tag ? $url = 'https://apip.orangedata.ru:' . $port . '/api/v2/documents/' : $url = 'https://apip.orangedata.ru:' . $port . '/api/v2/corrections/';
} elseif ($port == 12003) {
$tag ? $url = 'https://api.orangedata.ru:' . $port . '/api/v2/documents/' : $url = 'https://api.orangedata.ru:' . $port . '/api/v2/corrections/';
} else {
throw new Exception('Port error: invalid value' . PHP_EOL);
}
return $url;
}
private function prepare_curl($url) {
$curl = curl_init($url);
curl_setopt_array($curl, array(
CURLOPT_SSLKEY => $this->client_pkey,
CURLOPT_SSLCERT => $this->client_cert,
CURLOPT_SSLCERTPASSWD => $this->client_cert_pass,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CONNECTTIMEOUT => 3,
CURLOPT_TIMEOUT => 15,
CURLOPT_CAINFO => $this->ca_cert,
));
if ($this->debug) {
curl_setopt_array($curl, array(
CURLOPT_VERBOSE => 1,
CURLOPT_STDERR => fopen($this->debug_file, 'a'),
));
}
return $curl;
}
public function is_debug($is_debug = true) {
$this->debug = (bool) $is_debug;
return $this;
}
/**
* create_correction(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t*, u*) - Создание чека-коррекции
* @param $id (a) - Идентификатор документа (Строка от 1 до 32 символов)
* @param $correctionType (b) - 1173, тип коррекции (Число):
* 0 - Самостоятельно
* 1 - По предписанию
* @param $type (c) - Признак расчета, 1054 (Число):
* 1 - Приход
* 3 - Расход
* @param $description (d) - 1177, описание коррекции (Строка от 1 до 244 символов)
* @param $causeDocumentDate (e) - 1178, дата документа основания для коррекции В данном реквизите время всегда указывать, как 00:00:00 (Время в виде строки в формате ISO8601)
* @param $causeDocumentNumber (f) - 1179, номер документа основания для коррекции (Строка от 1 до 32 символов)
* @param $totalSum (g) - 1020, сумма расчета, указанного в чеке (БСО) (Десятичное число с точностью до 2 символов после точки)
* @param $cashSum (h) - 1031, сумма по чеку (БСО) наличными (Десятичное число с точностью до 2 символов после точки)
* @param $eCashSum (i) - 1081, сумма по чеку (БСО) электронными (Десятичное число с точностью до 2 символов после точки)
* @param $prepaymentSum (j) - 1215, сумма по чеку (БСО) предоплатой (зачетом аванса и (или) предыдущих платежей) (Десятичное число с точностью до 2 символов после точки)
* @param $postpaymentSum (k) - 1216, сумма по чеку (БСО) постоплатой (в кредит) (Десятичное число с точностью до 2 символов после точки)
* @param $otherPaymentTypeSum (l) - 1217, сумма по чеку (БСО) встречным предоставлением (Десятичное число с точностью до 2 символов после точки)
* @param $tax1Sum (m) - 1102, сумма НДС чека по ставке 18% (Десятичное число с точностью до 2 символов после точки)
* @param $tax2Sum (n) - 1103, сумма НДС чека по ставке 10% (Десятичное число с точностью до 2 символов после точки)
* @param $tax3Sum (o) - 1104, сумма расчета по чеку с НДС по ставке 0% (Десятичное число с точностью до 2 символов после точки)
* @param $tax4Sum (p) - 1105, сумма расчета по чеку без НДС (Десятичное число с точностью до 2 символов после точки)
* @param $tax5Sum (q) - 1106, сумма НДС чека по расч. ставке 18/118 (Десятичное число с точностью до 2 символов после точки)
* @param $tax6Sum (r) - 1107, сумма НДС чека по расч. ставке 10/110 (Десятичное число с точностью до 2 символов после точки)
* @param $taxationSystem (s) - 1055, применяемая система налогообложения (Число):
* 0 - Общая
* 1 - Упрощенная доход
* 2 - Упрощенная доход минус расход
* 3 - Единый налог на вмененный доход
* 4 - Единый сельскохозяйственный налог
* 5 - Патентная система налогообложения
* @param $group (t*) - Группа устройств, с помощью которых будет пробит чек (не всегда является обязательным полем)
* @param $key (u*) - Название ключа который должен быть использован для проверки подпись
* @return $this
* @throws Exception
*/
public function create_correction($id, $correctionType, $type, $description, DateTime $causeDocumentDate, $causeDocumentNumber, $totalSum, $cashSum, $eCashSum, $prepaymentSum, $postpaymentSum, $otherPaymentTypeSum, $tax1Sum, $tax2Sum, $tax3Sum, $tax4Sum, $tax5Sum, $tax6Sum, $taxationSystem, $group = null, $key = null) {
$this->correction_request = new \stdClass();
$this->correction_request->id = (string) $id;
$this->correction_request->inn = $this->inn;
$this->correction_request->group = $group ?: 'Main';
$this->correction_request->key = $key;
$this->correction_request->content = new \stdClass();
if (is_numeric($correctionType) and preg_match('/^[01]$/', $correctionType)) {
$this->correction_request->content->correctionType = (int) $correctionType;
} else {
throw new Exception('Incorrect correction CorrectionType' . PHP_EOL);
}
if (is_numeric($type) and preg_match('/^[13]$/', $type)) {
$this->correction_request->content->type = (int) $type;
} else {
throw new Exception('Incorrect correction Type' . PHP_EOL);
}
$this->correction_request->content->description = substr((string) $description, 1, 244);
$this->correction_request->content->causeDocumentDate = $causeDocumentDate->setTime(0, 0)->format(DateTime::ISO8601);
$this->correction_request->content->causeDocumentNumber = $causeDocumentNumber;
$this->correction_request->content->totalSum = (float) $totalSum;
$this->correction_request->content->cashSum = (float) $cashSum;
$this->correction_request->content->eCashSum = (float) $eCashSum;
$this->correction_request->content->prepaymentSum = (float) $prepaymentSum;
$this->correction_request->content->postpaymentSum = (float) $postpaymentSum;
$this->correction_request->content->otherPaymentTypeSum = (float) $otherPaymentTypeSum;
$this->correction_request->content->tax1Sum = (float) $tax1Sum;
$this->correction_request->content->tax2Sum = (float) $tax2Sum;
$this->correction_request->content->tax3Sum = (float) $tax3Sum;
$this->correction_request->content->tax4Sum = (float) $tax4Sum;
$this->correction_request->content->tax5Sum = (float) $tax5Sum;
$this->correction_request->content->tax6Sum = (float) $tax6Sum;
if (preg_match('/^[012345]$/', $taxationSystem)) {
$this->correction_request->content->taxationSystem = $taxationSystem;
} else {
throw new Exception('Incorrect taxationSystem' . PHP_EOL);
}
return $this;
}
/**
* post_correction() - Отправка чека-коррекции на обработку
* @return bool|mixed
* @throws Exception
*/
public function post_correction() {
$jsonstring = json_encode($this->correction_request, JSON_PRESERVE_ZERO_FRACTION);
if(!$jsonstring){
throw new Exception('JSON encode error:' . json_last_error_msg());
}
$sign = $this->sign_order_request($jsonstring);
$curl = is_numeric($this->api_url) ? $this->prepare_curl($this->edit_url($this->api_url, FALSE)) : $this->prepare_curl($this->api_url . '/api/v2/corrections/');
$headers = array(
"Content-Length: " . strlen($jsonstring),
"Content-Type: application/json; charset=utf-8",
"X-Signature: " . $sign
);
curl_setopt_array($curl, array(
CURLOPT_POST => true,
CURLOPT_HTTPHEADER => $headers,
CURLOPT_POSTFIELDS => $jsonstring
));
$answer = curl_exec($curl);
$info = curl_getinfo($curl);
switch ($info['http_code']) {
case '201':
$return = true;
break;
case '400':
$return = $answer;
break;
case '401':
throw new Exception('Unauthorized. Client certificate check is failed');
break;
case '409':
throw new Exception('Conflict. Bill with same id is already exists in the system.');
break;
case '503':
$return = $answer;
break;
default:
$return = false;
break;
}
if (FALSE === $return) {
throw new Exception('Curl error: ' . curl_error($curl));
}
return $return;
}
/**
* get_correction_status(a) - Проверка состояния чека-коррекции
* @param $id (a) - Идентификатор документа (Строка от 1 до 32 символов)
* @return bool|mixed
* @throws Exception
*/
public function get_correction_status($id) {
if (strlen($id) > self::MAX_ORDER_ID_LENGTH OR strlen($id) == 0) {
throw new Exception('Invalid order identifier');
}
$curl = is_numeric($this->api_url) ? $this->prepare_curl($this->edit_url($this->api_url,FALSE) . $this->inn . '/status/' . $id) : $this->prepare_curl($this->api_url . '/api/v2/corrections/' . $this->inn . '/status/' . $id);
curl_setopt($curl, CURLOPT_POST, false);
$answer = curl_exec($curl);
$info = curl_getinfo($curl);
switch ($info['http_code']) {
case '200':
$return = $answer;
break;
case '202':
$return = TRUE;
break;
case '400':
throw new Exception('Not Found. Order was not found in the system. Company not found.');
break;
case '401':
throw new Exception('Unauthorized. Client certificate check is failed');
break;
default:
$return = false;
break;
}
if (FALSE === $return) {
throw new Exception('Curl error: ' . curl_error($curl));
}
return $return;
}
}