-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix in docs description of contract disqualification
- Loading branch information
maxim.pakhomov
committed
Sep 8, 2021
1 parent
ce0801d
commit 6710c15
Showing
42 changed files
with
235 additions
and
129 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
docs/source/agreements/http/frameworks/mailestone-view.http
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
GET /api/2.5/agreements/2c88cbfb9f454f82976cb11006b46885/contracts/391acac5215446eeb6fc77beaa747403/milestones?acc_token=dd875ed1c80d40c38602ee0c12d1374b HTTP/1.0 | ||
Authorization: Bearer token | ||
Host: lb-api-sandbox.prozorro.gov.ua | ||
|
||
Response: 200 OK | ||
Content-Type: application/json | ||
X-Content-Type-Options: nosniff | ||
{ | ||
"data": [ | ||
{ | ||
"id": "3fe881cc13824149bb8f655de17cae47", | ||
"type": "activation", | ||
"status": "scheduled", | ||
"dueDate": "2021-05-16T00:00:00+02:00", | ||
"dateModified": "2021-04-01T01:00:00+03:00" | ||
} | ||
] | ||
} | ||
|
25 changes: 25 additions & 0 deletions
25
docs/source/agreements/http/frameworks/patch-milestone-met.http
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
PATCH /api/2.5/agreements/2c88cbfb9f454f82976cb11006b46885/contracts/391acac5215446eeb6fc77beaa747403/milestones/3fe881cc13824149bb8f655de17cae47?acc_token=dd875ed1c80d40c38602ee0c12d1374b HTTP/1.0 | ||
Authorization: Bearer token | ||
Content-Length: 27 | ||
Content-Type: application/json | ||
Host: lb-api-sandbox.prozorro.gov.ua | ||
DATA: | ||
{ | ||
"data": { | ||
"status": "met" | ||
} | ||
} | ||
|
||
Response: 200 OK | ||
Content-Type: application/json | ||
X-Content-Type-Options: nosniff | ||
{ | ||
"data": { | ||
"id": "3fe881cc13824149bb8f655de17cae47", | ||
"type": "activation", | ||
"status": "met", | ||
"dueDate": "2021-05-16T00:00:00+02:00", | ||
"dateModified": "2021-04-01T01:00:00+03:00" | ||
} | ||
} | ||
|
30 changes: 16 additions & 14 deletions
30
docs/source/agreements/http/frameworks/post-milestone-disqualification.http
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
POST /api/2.5/agreements/2c88cbfb9f454f82976cb11006b46885/contracts/391acac5215446eeb6fc77beaa747403/milestones?acc_token=dd875ed1c80d40c38602ee0c12d1374b HTTP/1.0 | ||
PATCH /api/2.5/agreements/2c88cbfb9f454f82976cb11006b46885/contracts/391acac5215446eeb6fc77beaa747403/milestones/3fe881cc13824149bb8f655de17cae47?acc_token=dd875ed1c80d40c38602ee0c12d1374b HTTP/1.0 | ||
Authorization: Bearer token | ||
Content-Length: 506 | ||
Content-Length: 27 | ||
Content-Type: application/json | ||
Host: lb-api-sandbox.prozorro.gov.ua | ||
DATA: | ||
{ | ||
"data": { | ||
"type": "disqualification", | ||
"documents": [ | ||
{ | ||
"hash": "md5:00000000000000000000000000000000", | ||
"title": "milestone.doc", | ||
"format": "application/msword", | ||
"datePublished": "2020-09-08T01:00:00+03:00", | ||
"id": "cd52b90af77e4f5b8cb0f210e83987b5", | ||
"dateModified": "2020-09-08T01:00:00+03:00", | ||
"url": "http://public-docs-sandbox.prozorro.gov.ua/get/a117dbccdbe947eb832962bc34a243b2?Signature=7UD43Grdv0LqSgZPiWN8c73GzI9n4P7qRXNGKGWk2zpiW4%2BFQzKx%2Fw2Qt1Nz2vH8UUYz8GS6ykrhhVDJAMVGDQ%3D%3D&KeyID=a8968c46" | ||
} | ||
] | ||
"status": "met" | ||
} | ||
} | ||
|
||
Response: 200 OK | ||
Content-Type: application/json | ||
X-Content-Type-Options: nosniff | ||
{ | ||
"data": { | ||
"id": "3fe881cc13824149bb8f655de17cae47", | ||
"type": "activation", | ||
"status": "met", | ||
"dueDate": "2021-05-16T00:00:00+02:00", | ||
"dateModified": "2021-04-01T01:00:00+03:00" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,14 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: openprocurement.api 2.5\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2021-04-07 14:32+0300\n" | ||
"POT-Creation-Date: 2021-09-08 01:53+0300\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=utf-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Generated-By: Babel 2.9.0\n" | ||
"Generated-By: Babel 2.9.1\n" | ||
|
||
msgid "Tutorial" | ||
msgstr "Туторіал" | ||
|
@@ -35,14 +35,8 @@ msgstr "Угода автоматично переноситься з модул | |
msgid "Creating agreement" | ||
msgstr "Створення реєстру" | ||
|
||
msgid "" | ||
"Let's say that we have conducted framework, submission and qualification and it has ``active`` status. " | ||
"When the framework is active and you change qualification status to active, system **automatically** created agreement(from framework) with contract(from qualification)." | ||
|
||
msgstr "" | ||
"Припустимо, що є кваліфікація, заявка та рішення по заявці в статусах ``active``. " | ||
"Коли заявка в стаусі `active` і ви оновлюєте рішення по заявці до `active` статусу " | ||
"система **автоматично** створює реєстр(з кваліфікації) з контрактом(з рішення по заявці)." | ||
msgid "Let's say that we have conducted framework, submission and qualification and it has ``active`` status. When the framework is active and you change qualification status to active, system **automatically** created agreement(from framework) with contract(from qualification)." | ||
msgstr "Припустимо, що є кваліфікація, заявка та рішення по заявці в статусах ``active``. Коли заявка в стаусі `active` і ви оновлюєте рішення по заявці до `active` статусу система **автоматично** створює реєстр(з кваліфікації) з контрактом(з рішення по заявці)." | ||
|
||
msgid "Getting agreement" | ||
msgstr "Отримання реєстру" | ||
|
@@ -74,5 +68,8 @@ msgstr "Для того щоб забанити контракт, потрібн | |
msgid "Contract disqualification" | ||
msgstr "Дискваліфікація контракту" | ||
|
||
msgid "For disqualification contract, you just need to add milestone to contract with status `disqualification`:" | ||
msgstr "Для дискваліфікації контракту, потрібно додати майлстон до контракту в статусі `disqualification`:" | ||
msgid "Let's see our created mailestone. In our mailestone you can see the ``id``." | ||
msgstr "Давайте подивимось на створиний майлстон. В ньому міститься ``id``" | ||
|
||
msgid "When we know ``id`` of our mailestone we can patch contract for disqualification, you just need to patch milestone 'type' : 'activation' to status ``met``:" | ||
msgstr "Для дискваліфікації використовуючи майлстон ``id`` можно пропатчити контракт з 'type' : 'activation' переводом статус в ``met``:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.