...
Table of Contents |
---|
...
Purpose
This WS is design to create contract request from Legal Entity side by Owner or Admin. Before the request is created the documents must have been uploaded. Than request can be approved or declined by NHS side. After that MSP must approve the request from their side. In case the request was two-side approved it can be two-side signed.
Input parameters
Input is signed data in PKCS7 format. The data must be unpacked and validated using JSON schema.
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
Digital signature
Decode content that is encrypted in an electronic digital signature.
Use Digital signature WS. Method checks digital signature and returns result.
Validate DRFO
- Check that DRFO in Certificate details exists and not empty
- in case of error return 422 error ('Invalid DRFO in DS')
- Check that DRFO in Certificate details is equal to DRFO in Party
- 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
Verify role
Extract from token:
- Validate client_id (is_blocked=false)
- in case of error return 403 Error ('Client is blocked')
- Check contractor_legal_entity is active
- in case error return 403 - ('Client is not active')
Validate request
...
- Check divisions belongs to legal_entity and divisions.status='active'
- in case of error return 422 error view $divisions ('Division must be active and within current legal_entity')
- Validate each division in array present exactly one time
- in case of error return 422 error view $divisions ('Division duplicates')
...
- Employees from employee_divisions has employee_type='DOCTOR', status='APPROVED'
- in case of error return 422 error view $employee ('Employee must be an active DOCTOR')
- Check contractor_employee_divisions.division_id is present in contractor_divisions.id
- in case of error return 422 error $divisions ('The division is not belong to contractor_divisions')
- Check employee present in divisions for one time: count(employee_id)=1 by contractor_employee_divisions.division_id
- in case of error return 422 error $divisions ('Employee in division duplicates)
...
- Check external_contractors.divisions.id is present in contractor_divisions.id
- in case of error return 422 error $divisions ('The division is not belong to contractor_divisions')
- Check external_contractors.contract.expires_at>start_date
- in case of error return 422 error $contract.expires_at ('Expires date must be greater than contract start_date')
- Set external_contractors.legal_entity_id='client_id'
...
- If external_contractors is not null then external_contractor_flag must be
true
- If external_contractors is null then external_contractor_flag must be set to
false
- in case of error return 422 error $external_contractor_flag ('Invalid external_contractor_flag').
If external_contractors wasn't sent in request then set external_contractor_flag to false.
...
- in case of error return 422 error $start_date ('Start date must be within this or next year')
...
- the year in $end_date must be equal to year in $start_date
- in case of error return 422 error $end_date ('The year of start date and end date must be equal')
- the $end_date must be greater than the $start_date
- in case of error return 422 ('The end date must be greater than the start date')
...
- Check employees.employee_id=contractor_owner_id and client_id=employee.legal_entity_id and employee_type in('OWNER', 'ADMIN') and status='APPROVED' and is_active=true
- In case of error return 422 Error ('Contractor owner must be an active OWNER or ADMIN and within current legal entity in contract request')
...
- 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.
- check there is a contract with such contract_number
- in case of error return 422 error ('Contract with such contract number does not exist')
- check if contract is not in status 'TERMINATED'
- in case of error return 409 error ('Can not update terminated contract')
- employee_divisions, start_date, end_date can't be updated. If there is an active contract with such contract_number copy start_date, end_date and contractor_legal_entity_id from existing contract. It's not allowed in response.
- in case of error return 422 error
...
- in case of error return 422 error ('Invalid contract type')
Determine parent contract (optional)
In case contract request contains parameter '$.contract_number':
- find contract that matches transmitted '$contract_number':
- if there is no contract with specified contract number, return 422 error ('Contract with such contract number does not exist')
- if contract is in 'Terminated' status, return 409 error ('Can not update terminated contract')
- set parent_contract_id value as contract.id
Search pending contract requests
1. Find there is no contract
- for same contractor_legal_entity_id
- within same period [start_date, end_date]
- status in ('NEW', 'APPROVED', 'NHS_SIGNED')
- id_form
In case there is such contract change its' status to 'TERMINATE'
Save contract request
Insert record to IL.contract_request in status 'NEW'
set - contractor_legal_entity_id=$client_id
Save signed contract request to media storage
Get url for contract request upload.
...
...
...
Child pages (Children Display) |
---|