Рекомендуєма программа для роботи з API - Postman
Стуктура наведених запитів:
POST |
/api/cu_supplier |
{ "code": "25", "name": "ТОВ Постач № 25" } |
Тип запиту |
суфікс до адреси серверу |
Тіло запиту |
Запит |
Опис |
GET |
Отримання данних. Вказано в множині (закінчення на -s(-es) ), параметрів не потрібно - даний запит повертає всі дані. Наприклад GET /api/cu_suppliers . |
POST |
Коригування данних |
DELETE |
Видалення даних ("type": 0 фізично видаляє запис з таблиці ) |
GET /web_get/*.txt |
Перегляд відправлених запитів з ІС. Де * - це назва запиту, наприклад cu_menu_requirement_plan |
GET /web_send/*.txt |
Перегляд відправлених запитів в ІС. Де * - це назва веб-сервісу ІС, наприклад CreateMenuRequirementPlan |
Видалення записів з довідників 🔝
DELETE /api/delete
{ "change":
[
{
"table_name": "children_groups",
"data": [
{ "code": "000000005", "is_del": false },
{ "code": "000000006", "is_del": true },
{ "code": "481709", "is_del": null }
]
},
{
"table_name": "children_categories",
"data": [
{ "code": "000000010", "is_del": false },
{ "code": "000000003", "is_del": true },
{ "code": "000000011", "is_del": null }
]
},
{
"table_name": "products",
"data": [
{ "code": "000000054", "is_del": false },
{ "code": "000000126", "is_del": true },
{ "code": "000000027", "is_del": null }
]
}
]
}
Даний запит працює для наступних довідників:
Довідник |
Опис |
children_groups |
Групи дітей |
children_categories |
Категорії дітей |
products |
Продукти харчування |
Значення is_del |
Опис |
true |
Встановити помітку на видалення |
false |
Зняти помітку на видалення |
null |
Фізично видалити значення |
POST /api/cu_institution
{
"code": "50187",
"name": "\"ЗГ Контакт\"",
"prefix": "КВ1",
"branch_code": "00000000006",
"institution_type_code": 1 // тип підрозділу: 1 - сад / 2 - школа
}
GET /api/institution?code=14
GET /api/institutions
Підрозділи - institutions
🔝
POST /api/cu_institution { "code": "14", "name": "18 (ДОУ)", "prefix": "Д18", "branch_code": "00000000003" }
GET /api/institution?code=14
GET /api/institutions
Продукти харчування - products
🔝
POST /api/cu_product { "code": "00000000079", "name": "Баклажани", "products_type_code": "000000001" }
GET /api/product?code=000000079
GET /api/products
Типи продуктів харчування - products_types
🔝
POST /api/cu_products_type { "code": "000000001", "name": "Вироби з молока", "priority": 1 }
GET /api/products_type?code=000000001
GET /api/products_types
POST /api/cu_package { "code": "000000001", "name": "Сітка 5 кг", "conversion_factor": 5.000000 }
GET /api/package?code=000000001
GET /api/packages
Упаковки постачальників - suppliers_packages
🔝
POST /api/cu_suppliers_package { "institution_code": "14", "supplier_code": "8", "product_code": "00000000079", "package_code": "000000001", "period": "1496448000", "activity": 1 }
GET /api/suppliers_package?institution_code=14&supplier_code=8&product_code=00000000079&package_code=000000001&period=2017-05-03
GET /api/suppliers_packages
Постачальники - suppliers
🔝
POST /api/cu_supplier { "code": "25", "name": "ТОВ Постач № 25" }
GET /api/supplier?code=16
GET /api/suppliers
Планова вартість дітодня - children_day_costs
🔝
POST /api/cu_children_day_cost { "children_category_code": "000000001", "cost_date": "1485296673", "cost": 12.25 }
GET /children_day_cost?children_category_code=000000001&cost_date=2017-01-25
GET api/children_day_costs
Причини відмови поставки - causes_deviations
🔝
POST /api/cu_causes_deviation { "code": "000000002", "name": "Причина 2" }
GET /api/causes_deviation?code=000000002
GET /api/causes_deviations
POST /api/cu_child { "code": "000000001", "name": "Іванов Іван Іванович" }
GET /api/child?code=000000001
GET /api/children
Категорії дітей - children_categories
🔝
POST /api/cu_children_category { "code": "000000001", "name": "Яслі", "priority": 1, "children_categories_type_code": "000000001" }
GET /api/children_category?code=000000001
GET /api/children_categories
Групи дітей - children_groups
🔝
POST /api/cu_children_group { "code": "000000003", "name": "3\1", "children_category_code": "000000001", "institution_code": "14"}
GET /api/children_group?code=000000003
GET /api/children_groups
Типи категорії дітей - children_categories_types
🔝
POST /api/cu_children_categories_type { "code": "00000001", "name": "Дошкільний" }
GET /api/children_categories_type?code=16
GET /api/children_categories_types
Причини відсутності дитини - reasons_absences
🔝
POST /api/cu_reasons_absence { "code": "000000001", "mark": "Х", "name": "Хвороба" }
GET /api/reasons_absence?code=000000001
GET /api/reasons_absences
Категорії страв - dishes_categories
🔝
POST /api/cu_dishes_categories { "dishes_categories": [ { "code": "000000001", "name": "Перша страва", "priority": 1 }, { "code": "000000002", "name": "Друга страва", "priority": 2 } ] }
GET /api/dishes_category?code=000000002
GET /api/dishes_categories
POST /api/cu_dishes { "dishes": [ { "code": "000000003", "name": "Суп", "dishes_category_code": "000000001", "priority": 4 }, { "code": "000000004", "name": "Чай", "dishes_category_code": "000000002", "priority": 3 } ] }
GET /api/dish?code=000000001
GET /api/dishes
POST /api/cu_meals { "meals": [ { "code": "000000001", "name": "Сніданок", "priority": 1 }, { "code": "000000002", "name": "Обід", "priority": 2 } ] }
GET /api/meal?code=000000002
GET /api/meals
Норми продуктів підрозділу по категоріях дітей в стравах - dishes_products_norms
🔝
POST /api/cu_dishes_products_norms
{ "dishes_products_norms":
[
{ "institution_code": 14, "dish_code": "000000002", "product_code": "000000054", "children_category_code": "000000001", "amount": 0.01 },
{ "institution_code": 14, "dish_code": "000000002", "product_code": "000000047", "children_category_code": "000000001", "amount": 0.05 }
]
}
GET /web_get/cu_dishes_products_norms.txt
Дата блокування документів - date_blocks
🔝
POST /api/cu_date_blocks
{ "date_blocks":
[
{ "institution_code": 14, "date_start": 1509494400, "date_end": 1510576706 }
]
}
DELETE /api/date_blocks
{ "date_blocks":
[
{ "institution_code": 14, "date_start": 1509494400, "date_end": 1510576706 }
]
}
Дата блокування табеля - timesheet_date_blocks
🔝
POST /api/cu_timesheet_date_blocks
{ "date_blocks":
[
{ "institution_code": 14, "date_start": 1509494400, "date_end": 1510576706 }
]
}
DELETE /api/timesheet_date_blocks
{ "date_blocks":
[
{ "institution_code": 14, "date_start": 1509494400, "date_end": 1510576706 }
]
}
Замовлення постачальнику - supplier_orders
🔝
POST /api/cu_supplier_order
{ "branch_code": "00000000006",
"supplier_code": "00000000023",
"number": "ІС000000001",
"number_manual": "РР000000001",
"date": "1516665600",
"date_start": "1516665600",
"date_end": "1516665600",
"products": [
{ "institution_code": "14", "product_code": "000000079", "contract_number": "BX-0000001", "contract_number_manual": "", "date": 1495542284, "count": 12, "price": 10.05},
{ "institution_code": "14", "product_code": "000000046 ", "contract_number": "BX-0000001", "contract_number_manual": "", "date": 1495628684, "count": 15, "price": 17.12 }
]
}
GET api/supplier_order?branch_code=00000000006&number=ІС000000001&date=2018-01-23
DELETE api/supplier_order { "branch_code": "00000000006", "number": "ІС000000001", "date": "1516665600", "type": 1 }
Надходження ТМЦ - receipts
🔝
POST /api/cu_receipt
{ "institution_code": "14",
"supplier_order_number": "ІС000000001",
"supplier_order_date": "1516665600",
"contract_number": "Ис-000000001",
"number": "0000000000011",
"invoice_number": "00000012",
"date": "1516665600",
"date_sa": "1516665600",
"number_sa": "000000000001",
"products": [
{ "product_code": "000000079", "date": "1504224000", "count": 25, "count_invoice": 25, "causes_deviation_code": "" },
{ "product_code": "000000046", "date": "1504224000", "count": 19, "count_invoice": 30, "causes_deviation_code": "000000002" }
]
}
GET /api/receipt?/receipt?institution_code=14&number=KL-000000005
DELETE /api/receipt { "institution_code": "14", "number": "000000000002" }
Заміна номеру договору у замовленнях постачальнику та надходженнях ТМЦ 🔝
POST /api/replace_contract_number
{
"contract_number_old": "112",
"contract_number_new": "11111",
"year": "2018"
}
Замовлення продуктів харчування - institution_orders
🔝
POST /api/cu_institution_order { "institution_code": "14", "number": "000000000002", "date": "1485296673", "date_start": "1485296673", "date_end": "1485296673", "date_sa": "1485296673", "number_sa": "000000000001", "products": [ { "date": "1485296673", "product_code": "000000079 ", "count": 15, "description": "1 тиждень"}, { "date": "1485296673", "product_code": "000000048 ", "count": 15, "description": "1 тиждень,3 тиждень" } ] }
GET api/institution_order?institution_code=14&number=000000000002
DELETE api/institution_order { "institution_code": "14", "number": "KL-000000013", "type": 1 }
Коригування замовлення продуктів харчування - io_corrections
🔝
POST /api/cu_institution_order_correction { "institution_code": "14", "institution_order_number": "KL-000000058", "number": "000000000004", "date": "1485296673", "date_sa": "1485296673", "number_sa": "000000000001",
"products": [ { "date": "1485296673", "product_code": "000000079 ", "amount_order": 5, "amount": 7, "description": "1 тиждень" }, { "date": "1485296673", "product_code": "000000048 ", "amount_order": 8, "amount": 8, "description": "1 тиждень,3 тиждень" } ] }
GET /api/institution_order_correction?institution_code=14&institution_order_number=000000000002&number=000000000010
DELETE /api/institution_order_correction { "institution_code": "14", "institution_order_number": "KL-000000053", "number": "KL-000000022", "type": 1 }
Меню-вимога - menu_requirements
🔝
POST /api/cu_menu_requirement_plan { "branch_code": "0003", "institution_code": "14", "number": "000000000002", "date": "1485296673", "splendingdate": "1485296673", "date_sap": "1485296673", "number_sap": "000000000001", "children_categories": [ { "children_category_code": "000000001", "count_all_plan": 55, "count_exemption_plan": 19 }, { "children_category_code": "000000002", "count_all_plan": 3, "count_exemption_plan": 7 } ], "products": [ { "children_category_code": "000000001", "product_code": "000000079 ", "count_plan": 15 }, { "children_category_code": "000000002", "product_code": "000000079 ", "count_plan": 21 } ] }
DELETE /api/menu_requirement { "institution_code": "14", "number": "KL-000000024", "type": 1 }
GET /web_get/cu_menu_requirement_fact.txt
POST /api/cu_menu_requirement_fact { "branch_code": "0003", "institution_code": "14", "number": "000000000002", "date": "1485296673", "splendingdate": "1485296673", "date_saf": "1485296673", "number_saf": "000000000001", "children_categories": [ { "children_category_code": "000000001", "count_all_fact": 55, "count_exemption_fact": 19 }, { "children_category_code": "000000002", "count_all_fact": 3, "count_exemption_fact": 7 } ], "products": [ { "children_category_code": "000000001", "product_code": "000000079 ", "count_fact": 15 }, { "children_category_code": "000000002", "product_code": "000000079 ", "count_fact": 21 } ] }
DELETE api/menu_requirement { "institution_code": "14", "number": "KL-000000024", "type": 2 }
GET /web_get/cu_menu_requirement_fact.txt
GET api/menu_requirement?institution_code=14&number=000000000028
GET /api/print_menu_requirement?institution_code=14&number=018В-0000121
POST /api/cu_timesheet { "branch_code": "0003", "institution_code": "14", "number": "000000000002", "date": "1487548800", "date_vb": "1485907200", "date_ve": "1488240000", "date_eb": "1485907200", "date_ee": "1486684800", "date_sa": "1506902400", "number_sa": "000000000001", "dates": [ { "child_code": "000000001", "children_group_code": "000000001", "reasons_absence_code": "000000001", "date": "1485907200" }, { "child_code": "000000001", "children_group_code": "000000001", "reasons_absence_code": "000000001", "date": "1485993600" } ] }
GET api/timesheet?institution_code=14&number=000000000001
DELETE api/timesheet { "institution_code": "14", "number": "KL-000000028", "type": 1 }