Purpose
This WS is designed to update contract by NHS by creating new contract request. Contract request is created with contract number, and parent contract is added to request. NHS Admin can change only fields that are on nhs side.
Specification
GraphQL
Authorize
- Verify the validity of access token
- in case of error return 401 ('Access denied')
- Check user scope contract_request:create in order to perform this action
- in case of error generate 401 response ('Invalid scopes')
- Verify the validity of access token
Verify role
Extract from token:
- Validate client_id (is_blocked=false)
- in case of error return 403 Error ('Client is blocked')
- Check legal_entity is active
- in case error return 403 - ('Client is not active')
- Check legal_entity.type = 'NHS'
- in case error return 403 forbidden
Digital signature
Decode content that is encrypted in an electronic digital signature.
Use Digital signature WS. Method checks digital signature and returns result.
Validate EDRPOU
- Check that EDRPOU in Certificate details exists and not empty
- in case of error return 422 error ('Invalid EDRPOU in DS')
- Check that EDRPOU in Certificate details is equal to EDPOU in legal entity
- Get client_id from token.
- Find prm.legal_entities id by client_id
- Compare EDRPOU in Certificate with legal_entities.edrpou
- In case validation fails - generate 422 error
- Check that SURNAME in Certificate details is equal to LAST_NAME in Party
- Get user_id → user_parties.party_id → parties.last_name and compare to surname from DS
- Convert prm.parties.LAST_NAME and Certificate details.SURNAME to uppercase
- Compare prm.parties.LAST_NAME and Certificate details.SURNAME as Cyrillic letters
- In case validation fails - generate 422 error
- Get user_id → user_parties.party_id → parties.last_name and compare to surname from DS
Validate DRFO
- Get parties.tax_id using party_users.party_id by user_id.
- Compare DRFO in Certificate with party.tax_id
- Convert DRFO and TAX_ID to uppercase
- Compare DRFO and TAX_ID as Cyrillic letters
- Convert DRFO to Cyrillic and compare as Cyrillic letters
- In case validation fails - generate 422 error
Validations
- contract request number structure XXXX-1234-5678-C , where:
- XXXX - series: numbers + only some letters (A, E, H, K, M, P, T, X)
- 1234-5678 - randomly generated numbers and letters A, E, H, K, M, P, T, X.
- contract_number is in request
- in case error return 409, "Contract number should be in payload"
- check there is a contract with such contract_number
- in case of error return 422 error ('Contract with such contract number does not exist')
- contrat status = VARIFIED
- in case of error return 409 error ('Can not update terminated contract')
- Contract.is_suspended = false
- in case error 409, "suspended contract should be updated by contractor_owner"
- Check only next fields are different from contract
- nhs_signer_id
- nhs_signer_base
- nhs_contract_price (for capitation contracts only)
- nhs_payment_method
- issue_city
- Misc
- assignee_id
- in case error return 422, "Not allowed to change field $.field"
- Validate end_date:
- if $contract_number and $end_date is passed in request:
- the $end_date must be greater or equal then the $start_date
- in case of error return 422 ('The year of end_date should be one year greater or equal to start_date')
- the $end_date should be less than $end_date from the previous contract and less than or equal to three month
- in case of error return 422 ('The end_date should be greater than of the previous contract and less than or equal to three months')
- the $end_date must be greater or equal then the $start_date
- if $contract_number w/o $end_date is passed in request:
- $end_date is taken from the previous contract.
- if $contract_number and $end_date is passed in request:
Search pending contract requests
1. Find there is no contract request
- for same contractor_legal_entity_id
- within same period [start_date, end_date]
- status in ('NEW', 'IN_PROCESS','APPROVED', 'NHS_SIGNED', 'PENGIND_NHS_SIGN')
- id_form
- type
- medical_program_id (for reimbursement contracts)
In case there is such contract request change its' status to 'TERMINATE'
Save contract request
- status=APPROVED
- parent_contract_id=contract_id
- update fields from request, other fields should be taken from contract.
Mapping for request
contract request | old contract | edited fields by nhs | other |
---|---|---|---|
contractor_legal_entity_id | contractor_legal_entity_id | ||
contractor_owner_id | contractor_owner_id | ||
contractor_base | contractor_base | ||
contractor_payment_details | contractor_payment_details | ||
contractor_rmsp_amount | contractor_rmsp_amount | ||
start_date | start_date | ||
end_date | end_date | ||
nhs_legal_entity_id | token.client_id | ||
nhs_signer_id | nhs_signer_id | ||
nhs_signer_base | nhs_signer_base | ||
contractor_signed | false | ||
issue_city | issue_city | ||
status | APPROVED | ||
status_reason | null | ||
nhs_contract_price | nhs_contract_price | ||
nhs_payment_method | nhs_payment_method | ||
contract_number | contract_number | ||
id_form | id_form | ||
contractor_divisions | SELECT id | ||
misc | misc | ||
assignee_id | assignee_id | ||
type | type | ||
medical_program_id | medical_program_id |
Save signed contract request to media storage
Get url for contract request upload.
ParameterSourceaction 'GET' bucket 'CONTRACT_REQUEST' resource_id : CONTRACT_REQUEST_ID resource_name : CONTRACT_REQUEST_APPROVED timestamp :TIMESTAMP - Upload signed contract request to media storage
Event manage
After contract request was created by NHS as change to existed contract this change should be shown in event manager
field | value | example |
---|---|---|
event_type | ContractRequestCreateEvent | |
entity_type | {$.contract.type}ContractRequest | CapitationContractRequest/ReimbursementContractRequest |
entity_id | $.id | |
properties.contract.old | $.parent_id | |
event_time | $.update_at | |
changed_by | $.user_id | |
inserted_at | now() | |
updated_at | now() |