[POST] …/v1/pos/Сheque/Get
Возвращает информацию о чеке.
Входные параметры
Название | Тип данных | Обязательность | Описание |
---|---|---|---|
uuid | String | Необязательный | Uuid чека |
code | String | Необязательный | Код чека |
session_uuid | String | Необязательный | Uuid смены, к которой привязан чек |
cashier_id | Int64 | Необязательный | Id кассира |
seller_id | Int64 | Необязательный | Id продавца |
card_id | Int64 | Необязательный | Id карты покупателя |
doc_order_delivery_id | Int64 | Необязательный | Id документа заказа |
statuses | Array of Enum | Необязательный | Статус чека: , <Opened | 1 > - открыт, <Paying | 2 > - на оплате, <Closed | 3 > - закрыт, <Delayed | 4 > - отложен, <DelayedPayment | 5 > - отложен на оплате, <Canceled | 6 > - аннулирован |
start_date | Int64 | Необязательный | Дата начала периода в формате unix time в секундах |
end_date | Int64 | Необязательный | Дата окончания периода в формате unix time в секундах |
is_return | bool | Необязательный | Метка о том, что чек является чеком возврата |
return_reason | Int64 | Необязательный | Id причины возврата |
Пример запроса
{
"uuid": "f44289c4-6edc-48d0-a40f-63d718f35993",
"code": null,
"session_uuid": null,
"cashier_id": 0,
"seller_id": null,
"card_id": 0,
"doc_order_delivery_id": 0,
"statuses": null,
"start_date": null,
"end_date": null,
"is_return": null,
"return_reason": null
}
Выходные параметры
Название | Тип данных | Описание |
---|---|---|
result | Array of Cheque | Массив чеков |
Пример ответа
{
"ok": true,
"result": [
{
"uuid": "f44289c4-6edc-48d0-a40f-63d718f35993",
"date": 1607608770,
"code": "WEB-0000581",
"status": "Opened",
"session_uuid": "4264195d-7c35-47cb-bbb9-baa2d2cea624",
"session_code": "WEB-0000077",
"cashier": {
"id": 1,
"full_name": "John Fitzgerald Kennedy",
"main_phone": "998123456789",
"user_group": {
"id": 1,
"parent_id": 1,
"name": "Administrators",
"child_count": 1,
"last_update": 1529755889
},
"enable_hints": true,
"system": true,
"last_update": 1532276019,
"first_name": "John",
"last_name": "Kennedy",
"middle_name": "Fitzgerald",
"sex": "Male",
"date_of_birth": "1993-12-21",
"address": "456 Elm Street, Suite 3, Los Angeles, CA 90001, USA",
"phones": "998123456789",
"email": "example@example.com",
"description": "example",
"login": "Admin",
"can_authorize": true,
"active": true,
"language_code": "RUS"
},
"cashier_id": 1,
"seller": {
"id": 1,
"full_name": "John Fitzgerald Kennedy",
"main_phone": "998123456789",
"user_group": {
"id": 1,
"parent_id": 1,
"name": "Administrators",
"child_count": 1,
"last_update": 1529755889
},
"enable_hints": true,
"system": true,
"last_update": 1532276019,
"first_name": "John",
"last_name": "Kennedy",
"middle_name": "Fitzgerald",
"sex": "Male",
"date_of_birth": "1993-12-21",
"address": "456 Elm Street, Suite 3, Los Angeles, CA 90001, USA",
"phones": "998123456789",
"email": "example@example.com",
"description": "example",
"login": "Admin",
"can_authorize": true,
"active": true,
"language_code": "RUS"
},
"seller_id": 1,
"is_return": true,
"return_reason": {
"id": 1,
"name": "Не понравилось",
"description": "example",
"enabled": true,
"last_update": 1593611279
},
"card_id": -1,
"card": null,
"doc_order_delivery_id": -1,
"amount": 8550,
"amount2": 9000,
"payments_amount": 0,
"card_discount_percent": 0
}
]
}