Get

[POST] …/v1/PurchaseOperation/Get

Возвращает информацию об операции закупки.

Входные параметры

Название Тип данных Обязательность Описание
ids array of int64 Необязательный массив id операций закупок
item_ids array of int64 Необязательный массив id номенклатуры
document_ids array of int64 Необязательный массив id документов закупок

Пример запроса

{
    "ids":[190],
    "item_ids":[36],
    "document_ids":[22]
}

Выходные параметры

Название Тип данных Описание
result Array of PurchaseOperation Массив операций закупок

Пример ответа

{
    "ok": true,
    "result": [
        {
            "id": 190,
            "document_id": 22,
            "item": {
                "id": 36,
                "group": {
                    "id": 12,
                    "parent_id": 0,
                    "path": "Производство",
                    "name": "Производство",
                    "child_count": 0,
                    "last_update": 1703858728
                },
                "department": null,
                "vat": {
                    "id": 1,
                    "value": 13,
                    "name": "13%",
                    "enabled": true,
                    "last_update": 1725004058
                },
                "barcode_list": null,
                "base_barcode": null,
                "unit": {
                    "id": 1,
                    "name": "шт",
                    "type": "pcs",
                    "description": null,
                    "kkm_code": 1,
                    "last_update": 1693395102
                },
                "unit2": null,
                "color": null,
                "size": null,
                "brand": null,
                "producer": null,
                "country": null,
                "compound": false,
                "deleted_mark": false,
                "image_url": "https://cdn.regos.uz/e338586d-dec1-4e37-b9ac-32a4d089cb31/i_1709719638_9e487e9f-b540-4e83-8217-ced8329db303.png",
                "parent_id": 0,
                "has_child": false,
                "last_update": 1725602250,
                "type": "Item",
                "code": 35,
                "name": "Мука, высший сорт",
                "fullname": "",
                "description": "",
                "articul": "",
                "kdt": 1,
                "min_quantity": 0,
                "icps": "03923001002000000",
                "assemblable": false,
                "disassemblable": false,
                "is_labeled": false,
                "comission_tin": null,
                "package_code": "1489210",
                "origin": -1,
                "partner_id": 1
            },
            "quantity": 56,
            "cost": 12000,
            "vat_value": -1,
            "vat_calculation_type": "No",
            "price": 15000,
            "current_price": 12000,
            "last_purchase_cost": 10000,
            "description": null,
            "additional_expenses_amount": 0,
            "last_update": 1706943394
        }
    ]
}