get

[POST] …/DocChequeOperation/get

Возвращает операции документа розничной продажи

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

Название Тип данных Обязательность Описание параметра
doc_sale_uuid string Необязательный UUID документа розничной продажи
uuids Array of string Необязательный Массив UUID операций документа розничной продажи
item_ids Array of Int64 Необязательный Массив id номенклатуры
stock_ids Array of Int64 Необязательный Массив id складов
firm_ids Array of Int64 Необязательный Массив id предприятий
operating_cash_ids Array of Int64 Необязательный Массив id касс

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

{
   "doc_sale_uuid":"38bd43bc-4d9d-49da-a923-643eba1fb8a1",
   "uuids":["03033709-77b1-4a9e-91ac-555a53090a44"],
   "item_ids":[8],
   "stock_ids":[1],
    "firm_ids":[1],
    "operating_cash_ids":null
}

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

Название Тип данных Описание параметра
Result Array of DocChequeOperation Массив объектов DocChequeOperation

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

{
  "ok": true,
  "result": [
    {
      "uuid": "03033709-77b1-4a9e-91ac-555a43090a44",
      "has_storno": false,
      "storno_uuid": null,
      "document": "38bd43bc-4d9d-49da-a923-646eba1fb8a1",
      "stock_id": 1,
      "item": {
        "id": 8,
        "group": {
          "id": 1,
          "parent_id": 0,
          "path": "НАПИТКИ",
          "name": "НАПИТКИ",
          "child_count": 0,
          "last_update": 1693395955
        },
        "department": null,
        "vat": {
          "id": 1,
          "value": -1,
          "name": "Без НДС",
          "enabled": true,
          "last_update": 1664715017
        },
        "barcode_list": "4780022620177",
        "base_barcode": "4780022620177",
        "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": null,
        "last_update": 1693396116,
        "parent_id": 0,
        "has_child": false,
        "type": "Item",
        "partner_id": 0,
        "code": 8,
        "name": "PEPSI, ПЭТ бутилка 1,5 л.",
        "fullname": null,
        "description": null,
        "articul": null,
        "kdt": 1,
        "min_quantity": 0,
        "icps": "",
        "assemblable": false,
        "disassemblable": false,
        "is_labeled": false,
        "comission_tin": null,
        "package_code": null
      },
      "order": 1,
      "quantity": 1,
      "price": 10000,
      "price2": 10000,
      "promo_id": -1,
      "vat_value": -1,
      "last_update": 1693946880
    }
  ]
}