-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contract local role contract_supplier
for signing
#7
Open
VDigitall
wants to merge
15
commits into
master
Choose a base branch
from
feature/local-role-contract_supplier
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
VDigitall
changed the title
Feature/local role contract supplier
Contract local role Mar 17, 2020
contract_supplier
for signing
Open
VDigitall
force-pushed
the
feature/local-role-contract_supplier
branch
from
March 17, 2020 17:57
6ec4a5e
to
0fba980
Compare
VDigitall
force-pushed
the
feature/local-role-contract_supplier
branch
3 times, most recently
from
March 20, 2020 07:24
d8c12a8
to
4fe6ee9
Compare
VDigitall
force-pushed
the
feature/local-role-contract_supplier
branch
2 times, most recently
from
April 14, 2020 14:48
a80f6c9
to
7b002d6
Compare
According relsease_2020_04_19
VDigitall
force-pushed
the
feature/local-role-contract_supplier
branch
from
April 17, 2020 13:40
7b002d6
to
d1b5cc0
Compare
pontostroy
force-pushed
the
master
branch
3 times, most recently
from
June 24, 2020 09:23
b94b95c
to
ae3e356
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Концепція підписання договору між замовником та постачальником-переможцем аукціону
Процес підписання
Процес підписання договору між замовником (
tender owner
) та постачальником (supplier
відбувається у об’єктіContract
у статусіpending
.Workflow:
pending
active
pending.winner-signing
.pending
;active
.Підсумок:
Для створення процесу підписання та унеможливлення підписання контракту кимось іншим, окрім замовника та постачальника, внесли наступні зміни:
tender_owner
та ввели нову -contract_supplier
;__local_roles__
), додали тудиcontract_supplier
edit
розділили на моделі Contract на три:edit_admins
;edit_contract_supplier
;edit_tender_owner
.permissions
) дляtender_owner
icontract_supplier
, і вони однакові :upload_contract_documents
;edit_contract
.pending.winner-signing
та валідації до нього:validate_role_for_contract_document_operation
,validate_update_contract_status_by_supplier
,validate_contract_document
(існуюча, змінена).Зміни:
Модель Contract:
Для індентифікації постачальника необхідно знайти пропозицію (Bid), чий власник виграв аукціон. При тому і Bid, і Award повинні бути у статусі
active
.Цим керуючись, в
core
утилітах додали функціюget_contract_supplier_roles
- присвоювання локальної роліcontract_supplier
власникуBid
:Окільки намає змоги видати постачальнику токен для контракту напряму, ми використали токен його виграшної пропозиції (Bid).
ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/utils.py
Lines 449 to 458 in 4fe6ee9
У самій моделі Contract перевизначили
__local_roles__
ролями постачальника:ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/models.py
Lines 396 to 399 in 4fe6ee9
Тут і змінили метод
get_role
, що повертає відповідну рольedit
для замовника та постачальника:ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/models.py
Lines 387 to 394 in 4fe6ee9
Зміни внесли для всіх типів Contract та Tender:
Зміни у класі Options, для closeFrameworkAgreementSelectionUA - сontract.csv файлі.
ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/models.py
Lines 376 to 378 in 4fe6ee9
Модель Tender:
У
core
утиліти додали функціюget_contract_supplier_permissions
- визначенні дозволів постачальниківcontract_supplier_permissions
(керується принципом роботи, описаним надget_contract_supplier_roles
). Надали постачальнику дозволиupload_contract_documents
таedit_contract
.ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/utils.py
Lines 433 to 446 in 4fe6ee9
У моделі Tender перевизначили список контролю-доступу новими ролями та дозволами постачальника, аналогічні (
upload_contract_documents
таedit_contract
) дали і замовнику.ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/models.py
Lines 1477 to 1490 in 4fe6ee9
Статус
pending.winner-signing
:Створили статус
pending.winner-signing
:ProzorroUKR-openprocurement.api/src/openprocurement/api/models.py
Line 676 in f90bf3d
Перевизначили можливість оновити всі типи контрактів (PATCH) у всіх типах моделі Tender з
permission="edit_contract"
у статусіpending.winner-signing
:ProzorroUKR-openprocurement.api/src/openprocurement/tender/belowthreshold/views/contract.py
Lines 85 to 89 in f90bf3d
Створили валідації статусу:
ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/validation.py
Lines 1208 to 1213 in f90bf3d
ProzorroUKR-openprocurement.api/src/openprocurement/tender/core/validation.py
Lines 1215 to 1227 in f90bf3d