-
Notifications
You must be signed in to change notification settings - Fork 30
/
Receipt.php
470 lines (433 loc) · 18.1 KB
/
Receipt.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
<?php
/**
* The MIT License
*
* Copyright (c) 2022 "YooMoney", NBСO LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace YooKassa\Model;
use YooKassa\Common\AbstractObject;
use YooKassa\Common\Exceptions\EmptyPropertyValueException;
use YooKassa\Common\Exceptions\InvalidPropertyValueException;
use YooKassa\Common\Exceptions\InvalidPropertyValueTypeException;
/**
* Класс данных для формирования чека в онлайн-кассе (для соблюдения 54-ФЗ)
*
* @property ReceiptCustomer $customer Информация о плательщике
* @property ReceiptItemInterface[] $items Список товаров в заказе
* @property SettlementInterface[] $settlements Массив оплат, обеспечивающих выдачу товара
* @property int $taxSystemCode Код системы налогообложения. Число 1-6.
* @property int $tax_system_code Код системы налогообложения. Число 1-6.
*/
class Receipt extends AbstractObject implements ReceiptInterface
{
/**
* @var ReceiptCustomer Информация о плательщике
*/
private $_customer;
/**
* @var ReceiptItem[] Список товаров в заказе
*/
private $_items = array();
/**
* @var Settlement[] Массив оплат, обеспечивающих выдачу товара
*/
private $_settlements = array();
/**
* @var ReceiptItem[] Список айтемов в заказе, являющихся доставкой
*/
private $_shippingItems = array();
/**
* @var int Код системы налогообложения. Число 1-6.
*/
private $_taxSystemCode;
/**
* Возвращает информацию о плательщике
*
* @return ReceiptCustomer Информация о плательщике
*/
public function getCustomer()
{
if (!$this->_customer) {
$this->_customer = new ReceiptCustomer();
}
return $this->_customer;
}
/**
* Устанавливает информацию о плательщике
* @param ReceiptCustomer $customer
*/
public function setCustomer($customer)
{
$this->_customer = $customer;
}
/**
* Возвращает список позиций в текущем чеке
*
* @return ReceiptItemInterface[] Список товаров в заказе
*/
public function getItems()
{
return $this->_items;
}
/**
* Устанавливает список позиций в чеке
*
* Если до этого в чеке уже были установлены значения, они удаляются и полностью заменяются переданным списком
* позиций. Все передаваемые значения в массиве позиций должны быть объектами класса, реализующего интерфейс
* ReceiptItemInterface, в противном случае будет выброшено исключение InvalidPropertyValueTypeException.
*
* @param ReceiptItemInterface[] $value Список товаров в заказе
*
* @throws EmptyPropertyValueException Выбрасывается если передали пустой массив значений
* @throws InvalidPropertyValueTypeException Выбрасывается если в качестве значения был передан не массив и не
* итератор, либо если одно из переданных значений не реализует интерфейс ReceiptItemInterface
*/
public function setItems($value)
{
if ($value === null || $value === '') {
throw new EmptyPropertyValueException('Empty items value in receipt', 0, 'receipt.items');
}
if (!is_array($value) && !($value instanceof \Traversable)) {
throw new InvalidPropertyValueTypeException(
'Invalid items value type in receipt', 0, 'receipt.items', $value
);
}
$this->_items = array();
$this->_shippingItems = array();
foreach ($value as $key => $val) {
if (is_object($val) && $val instanceof ReceiptItemInterface) {
$this->addItem($val);
} else {
throw new InvalidPropertyValueTypeException(
'Invalid item value type in receipt', 0, 'receipt.items['.$key.']', $val
);
}
}
}
/**
* Добавляет товар в чек
*
* @param ReceiptItemInterface $value Объект добавляемой в чек позиции
*/
public function addItem($value)
{
$this->_items[] = $value;
if ($value->isShipping()) {
$this->_shippingItems[] = $value;
}
}
/**
* Возвращает массив оплат, обеспечивающих выдачу товара
*
* @return SettlementInterface[] Массив оплат, обеспечивающих выдачу товара.
*/
public function getSettlements()
{
return $this->_settlements;
}
/**
* Возвращает массив оплат, обеспечивающих выдачу товара
*
* @param SettlementInterface[] $value
*/
public function setSettlements($value)
{
if ($value === null || $value === '') {
throw new EmptyPropertyValueException('Empty settlements value in receipt', 0, 'receipt.settlements');
}
if (!is_array($value) && !($value instanceof \Traversable)) {
throw new InvalidPropertyValueTypeException(
'Invalid settlements value type in receipt', 0, 'receipt.settlements', $value
);
}
$this->_settlements = array();
foreach ($value as $key => $val) {
if (is_array($val)) {
$this->addSettlement(new Settlement($val));
} elseif ($val instanceof SettlementInterface) {
$this->addSettlement($val);
} else {
throw new InvalidPropertyValueTypeException(
'Invalid settlements value type in receipt', 0, 'receipt.settlements['.$key.']', $val
);
}
}
}
/**
* Добавляет оплату в чек
*
* @param SettlementInterface $value Объект добавляемой в чек позиции
*/
public function addSettlement($value)
{
$this->_settlements[] = $value;
}
/**
* Возвращает код системы налогообложения
*
* @return int Код системы налогообложения. Число 1-6.
*/
public function getTaxSystemCode()
{
return $this->_taxSystemCode;
}
/**
* Устанавливает код системы налогообложения
*
* @param int $value Код системы налогообложения. Число 1-6
*
* @throws InvalidPropertyValueTypeException Выбрасывается если переданный аргумент - не число
* @throws InvalidPropertyValueException Выбрасывается если переданный аргумент меньше одного или больше шести
*/
public function setTaxSystemCode($value)
{
if ($value === null || $value === '') {
$this->_taxSystemCode = null;
} elseif (!is_numeric($value)) {
throw new InvalidPropertyValueTypeException(
'Invalid taxSystemCode value type', 0, 'receipt.taxSystemCode'
);
} else {
$castedValue = (int)$value;
if ($castedValue < 1 || $castedValue > 6) {
throw new InvalidPropertyValueException(
'Invalid taxSystemCode value: '.$value, 0, 'receipt.taxSystemCode'
);
}
$this->_taxSystemCode = $castedValue;
}
}
/**
* Проверяет есть ли в чеке хотя бы одна позиция
*
* @return bool True если чек не пуст, false если в чеке нет ни одной позиции
*/
public function notEmpty()
{
return !empty($this->_items);
}
/**
* Возвращает стоимость заказа исходя из состава чека
*
* @param bool $withShipping Добавить ли к стоимости заказа стоимость доставки
*
* @return int Общая стоимость заказа в центах/копейках
*/
public function getAmountValue($withShipping = true)
{
$result = 0;
foreach ($this->_items as $item) {
if ($withShipping || !$item->isShipping()) {
$result += $item->getAmount();
}
}
return $result;
}
/**
* Возвращает стоимость доставки исходя из состава чека
*
* @return int Стоимость доставки из состава чека в центах/копейках
*/
public function getShippingAmountValue()
{
$result = 0;
foreach ($this->_items as $item) {
if ($item->isShipping()) {
$result += $item->getAmount();
}
}
return $result;
}
/**
* Подгоняет стоимость товаров в чеке к общей цене заказа
*
* @param AmountInterface $orderAmount Общая стоимость заказа
* @param bool $withShipping Поменять ли заодно и цену доставки
*/
public function normalize(AmountInterface $orderAmount, $withShipping = false)
{
$amount = $orderAmount->getIntegerValue();
if (!$withShipping) {
if ($this->_shippingItems !== null) {
if ($amount > $this->getShippingAmountValue()) {
$amount -= $this->getShippingAmountValue();
} else {
$withShipping = true;
}
}
}
$realAmount = $this->getAmountValue($withShipping);
if ($realAmount !== $amount) {
$coefficient = (float)$amount / (float)$realAmount;
$items = array();
$realAmount = 0;
foreach ($this->_items as $item) {
if ($withShipping || !$item->isShipping()) {
$price = round($coefficient * $item->getPrice()->getIntegerValue());
if ($price < 1.0) {
if ($item->getPrice()->getIntegerValue() > 1) {
$item->getPrice()->setValue(0.01);
}
$amount -= $item->getAmount();
} else {
$items[] = $item;
$realAmount += $item->getAmount();
}
}
}
uasort($items, function (ReceiptItemInterface $a, ReceiptItemInterface $b) {
if ($a->getPrice()->getIntegerValue() > $b->getPrice()->getIntegerValue()) {
return -1;
}
if ($a->getPrice()->getIntegerValue() < $b->getPrice()->getIntegerValue()) {
return 1;
}
return 0;
});
$coefficient = (float)$amount / (float)$realAmount;
$realAmount = 0;
$aloneId = null;
foreach ($items as $index => $item) {
if ($withShipping || !$item->isShipping()) {
$item->applyDiscountCoefficient($coefficient);
$realAmount += $item->getAmount();
if ($aloneId === null && $item->getQuantity() === 1.0 && !$item->isShipping()) {
$aloneId = $index;
}
}
}
if ($aloneId === null) {
foreach ($this->_items as $index => $item) {
if (!$item->isShipping()) {
$aloneId = $index;
break;
}
}
}
if ($aloneId === null) {
$aloneId = 0;
}
$diff = $amount - $realAmount;
if (abs($diff) >= 0.1) {
if ($this->_items[$aloneId]->getQuantity() === 1.0) {
$this->_items[$aloneId]->increasePrice($diff / 100.0);
} elseif ($this->_items[$aloneId]->getQuantity() > 1.0) {
$item = $this->_items[$aloneId]->fetchItem(1);
$item->increasePrice($diff / 100.0);
array_splice($this->_items, $aloneId + 1, 0, array($item));
} else {
$item = $this->_items[$aloneId]->fetchItem($this->_items[$aloneId]->getQuantity() / 2);
$item->increasePrice($diff / 100.0);
array_splice($this->_items, $aloneId + 1, 0, array($item));
}
}
}
}
/**
* Возвращает номер телефона плательщика в формате ITU-T E.164 на который будет выслан чек
*
* @deprecated 1.3.0 Устарел — данные рекомендуется брать в параметре receipt.customer.phone.
*
* @return string Номер телефона плательщика
*/
public function getPhone()
{
return $this->getCustomer() ? $this->getCustomer()->getPhone() : null;
}
/**
* Устанавливает номер телефона плательщика в формате ITU-T E.164 на который будет выслан чек
*
* @deprecated 1.3.0 Устарел — данные рекомендуется передавать в параметре receipt.customer.phone.
*
* @param string $value Номер телефона плательщика в формате ITU-T E.164
*
* @throws InvalidPropertyValueTypeException Выбрасывается если в качестве значения была передана не строка
*/
public function setPhone($value)
{
if (!$this->getCustomer()) {
$this->setCustomer(new ReceiptCustomer());
}
$this->getCustomer()->setPhone($value);
}
/**
* Возвращает адрес электронной почты на который будет выслан чек
*
* @deprecated 1.3.0 Устарел — данные рекомендуется брать в параметре receipt.customer.email.
*
* @return string E-mail адрес плательщика
*/
public function getEmail()
{
return $this->getCustomer() ? $this->getCustomer()->getEmail() : null;
}
/**
* Устанавливает адрес электронной почты на который будет выслан чек
*
* @deprecated 1.3.0 Устарел — данные рекомендуется передавать в параметре receipt.customer.email.
*
* @param string $value E-mail адрес плательщика
*
* @throws InvalidPropertyValueTypeException Выбрасывается если в качестве значения была передана не строка
*/
public function setEmail($value)
{
if (!$this->getCustomer()) {
$this->setCustomer(new ReceiptCustomer());
}
$this->getCustomer()->setEmail($value);
}
/**
* Устанавливает значения свойств текущего объекта из массива
*
* @param array|\Traversable $sourceArray Ассоциативный массив с настройками
*/
public function fromArray($sourceArray)
{
if (!empty($sourceArray['customer'])) {
$sourceArray['customer'] = new ReceiptCustomer($sourceArray['customer']);
}
if (!empty($sourceArray['items'])) {
foreach ($sourceArray['items'] as $i => $itemArray) {
if (is_array($itemArray)) {
$sourceArray['items'][$i] = new ReceiptItem($itemArray);
}
}
}
if (!empty($sourceArray['settlements'])) {
foreach ($sourceArray['settlements'] as $i => $itemArray) {
if (is_array($itemArray)) {
$sourceArray['settlements'][$i] = new Settlement($itemArray);
}
}
}
parent::fromArray($sourceArray);
}
/**
* Возвращает Id объекта чека
*
* @return string Id объекта чека
*/
public function getObjectId()
{
return null;
}
}