ЕСОЗ - публічна документація
RС_[UPD] Create Device request
- 1 Purpose
- 2 Key points
- 3 Specification
- 4 Authorization
- 5 Validate digital signature
- 6 Validate Patient
- 7 Validate request
- 7.1 1. Validate requester
- 7.2 2. Validate based on
- 7.3 3. Validate intent
- 7.4 4. Validate code or code_reference
- 7.5 5. Validate quantity
- 7.6 6. Validate encounter
- 7.7 7. Validate authored on
- 7.8 8. Validate occurrence
- 7.9 9. Validate reason
- 7.10 10. Validate Package unit and quantity
- 7.11 11. Validate Medical program
- 7.12 12. Validate priority
- 7.13 13. Validate supporting info
- 7.14 14. Validate performer
- 7.15 15. Validate parameter
- 8 Validate status
- 9 Service logic
Purpose
This WS is designed to create Device Request
Key points
Only authenticated and authorized users with appropriate scope can invoke Create Device Request
Device Request is created in async way. Successful result of the job should return a link on the created Device Request (look at RС_[UPD] Get Device request detailsarchived).
Device Request should be signed with DS. Signed content stores in the media storage.
All validations within Device request attributes should be executed by internal call of RС_[UPD] PreQualify Device requestarchived function
Device Request can be created for a person only
Medical program is optional in the Device Request
Specification
Authorization
Verify the validity of access token
in case of error - return 401 (“Invalid access token”) in case of validation fails
Verify that token is not expired
in case of error - return 401 (“Invalid access token”)
Check user and client scopes in order to perform this action (scope = 'device_request:write')
return 403 (“Your scope does not allow to access this resource. Missing allowances: device_request:write”) in case of invalid scope(s)
If BLOCK_UNVERIFIED_PARTY_USERS is true, then check party's data match following condition: verification_status != NOT_VERIFIED or (verification_status = NOT_VERIFIED and updated_at > current_date - UNVERIFIED_PARTY_PERIOD_DAYS_ALLOWED):
in case not match - return 403 ("Access denied. Party is not verified")
If BLOCK_DECEASED_PARTY_USERS is true, check that party is not deceased (party_verification record does not equal to: dracs_death_verification_status = VERIFIED and dracs_death_verification_reason = MANUAL_CONFIRMED):
in case of error - return 403 ("Access denied. Party is deceased")
Validate digital signature
Validate request is signed
in case of error - return 400 (“Invalid signed content”)
Check DS is valid and not expired
Validate that DS belongs to the requester
Check that DRFO from DS and party.tax_id matches
in case of error - return 422 (“Does not match the signer drfo“)
Validate Patient
Execute validation as described here
RС_[UPD] PreQualify Device request | Validate Patientarchived
Skip the following validation in case madical_program is not specified in the request
Validate person is not preperson(patients.preperson == false)
in case of error - return 409 ('Forbidden to create device request for preperson')
Validate request
Validate request using schema.
1. Validate requester
Execute validation as described here
RС_[UPD] PreQualify Device request | 1. Validate requesterarchived
2. Validate based on
Execute validation as described here
RС_[UPD] PreQualify Device request | 2. Validate based onarchived
3. Validate intent
Execute validation as described here
RС_[UPD] PreQualify Device request | 3. Validate intentarchived
4. Validate code or code_reference
Execute validation as described here
RС_[UPD] PreQualify Device request | 4. Validate code or code_referencearchived
Skip the following validation in case madical_program is not specified in the request
Check that there is at least one active device_definition with the same type (device_definitions.classification_type)
device_definitions.is_active = true
in case of error - return 422 ('No active device_definitions with the same type')
5. Validate quantity
If medical program is not specified in request then quantity is optional here
If quantity provided in request - execute validation as described here
RС_[UPD] PreQualify Device request | 5. Validate quantityarchived
Check that $.quantity.system is
device_unit
dictionary, requiredin case of error - return 422 ('value is not allowed in enum')
Check that $.quantity.code comply with $.quantity.system, required
in case of error - return 422 ('value is not allowed in enum')
Check that $.quantity.value is integer, required
in case of error - return 422 ('Value should be an integer')
6. Validate encounter
Execute validation as described here
RС_[UPD] PreQualify Device request | 6. Validate encounterarchived
7. Validate authored on
Execute validation as described here
RС_[UPD] PreQualify Device request | 7. Validate authored onarchived
8. Validate occurrence
Execute validation as described here
RС_[UPD] PreQualify Device request | 8. Validate occurrencearchived
9. Validate reason
Execute validation as described here
RС_[UPD] PreQualify Device request | 9. Validate reasonarchived
10. Validate Package unit and quantity
Execute validation as described here
RС_[UPD] PreQualify Device request | 10. Validate Package unit and quantityarchived
11. Validate Medical program
Execute validation as described here
RС_[UPD] PreQualify Device request | 11. Validate Medical programsarchived
12. Validate priority
Execute validation as described here
RС_[UPD] PreQualify Device request | 12. Validate priorityarchived
13. Validate supporting info
Execute validation as described here
https://e-health-ua.atlassian.net/wiki/spaces/EH/pages/17782014958#13.-Validate-supporting-info
14. Validate performer
Execute validation as described here
https://e-health-ua.atlassian.net/wiki/spaces/EH/pages/17782014958#14.-Validate-performer
15. Validate parameter
Execute validation as described here
https://e-health-ua.atlassian.net/wiki/spaces/EH/pages/17782014958#15.-Validate-parameter
Validate status
The target status value must be submitted in the order of display in the signed content (media storage)
Validate $.status is active
in case of error - return 422 ("value is not allowed in enum")
Service logic
Save signed content to media storage, in bucket pointed in MEDIA_STORAGE_DEVICE_REQUEST_BUCKET chart parameter
Fill in the following fields:
requisition. Generate requisition number as described at https://e-health-ua.atlassian.net/wiki/spaces/EH/pages/583405396, but based on the Device Request identifier and put it in the field.
signed_content_links. Add string item in the array with a link on saved content in media storage
status = ACTIVE
status_reason = null
subject. Set hashed patient_id from URL
requester_legal_entity. Set client_id from token
quantity.unit. Set description according to quantity code and system
dispense_valid_to. dispense_valid_to. Set (current_date + dispense_period_day) if medical program was set and it has dispense_period_day setting. Otherwise, if medical program was set and it has NO dispense_period_day setting, set the value using device_dispense_period global parameter. Else, if medical program was NOT set dispense_valid_to = null.
Save dispense_valid_to as
datetime
but truncate time to beginning of date (2013-08-02T00:00:00Z
)
verification_code. Generate random 4-digit code if medical program was set
context_episode_id. Set episode from the $.encounter
context_care_plan_id. Get Activity from $.based_on, set activity.care_plan as context_care_plan_id
based_on. Set based_on from the $.based_on
priority. Set priority from the $.priority
parameter. Set parameter from the $.parameter
performer. Set performer from the $.performer
supporting_info. Set supporting_info from the $.supporting_info
inserted_at. Set current date and time
updated_at. Set current date and time
inserted_by. Set current user from token
updated_by. Set current user from token
Send notification to patient:
Determine patient's default authentication method as described at Determination of a default authentication method and return person's active auth_methods
Get program from request and (if provided) get program setting
request_notification_disabled
:if program provided and
request_notification_disabled
== true:do not send SMS notification to patient
if program provided and
request_notification_disabled
== false and OTP defined on patient:generate text according to CREATE_DEVICE_REQUEST_SMS_TEMPLATE and send SMS with verification_code
if program not provided and OTP defined on patient:
check config parameter
DEVICE_REQUESTS_SMS_ENABLED
is set to truegenerate text according to CREATE_DEVICE_REQUEST_SMS_TEMPLATE_WITHOUT_CODE and send SMS without verification_code
Save data to device_requests collection in MongoDB according to https://e-health-ua.atlassian.net/wiki/spaces/EH/pages/17782014841
If device request is based on activity - recalculate and set remaining_quantity for the activity
select all device requests based on current activity and calculate previously reserved quantity as sum of DR.quantity.value.
calculate reserved at the moment quantity as sum of previously reserved quantity and quantity from current DR
calculate remaining quantity by subtracting reserved at the moment quantity from activity's quantity
Update activity set remaining quantity (activity.detail.remaining_quantity)
Send
StatusChangeEvent
to Event Manager
ЕСОЗ - публічна документація