Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
/
[DRAFT] REST API Unblock Medication Request [API-005-008-002-0156]
ЕСОЗ - публічна документація
[DRAFT] REST API Unblock Medication Request [API-005-008-002-0156]
This WS is designed to unblock previously blocked Medication request with indicating block_reason and block_reason_code
Key points
Only authenticated and authorized user with appropriate scope can unblock Medication request.
Medication request can be unblocked only if it was previously blocked.
Medication request can be unblocked only from ‘ACTIVE' status.
Logic
Update Medication request in OPS DB:
set is_blocked = false
set block_reason_code = $.block_reason_code
set block_reason = $.block_reason
set updated_by = user_id
set updated_at = now()
Send SMS for person
If Medication request has program with medical program setting medication_request_notification_disabled = true, then don't send SMS.
Else:
Get authentication_method of person from MPI
If authentication_method == OTP, then send SMS to a person from Medication request:
Generate SMS text
get template from unblock_template_sms parameter
enrich template with data from Medication request
Send SMS to a person with text from template (“Ваш рецепт <request_number> розблоковано. Можете отримати ліки в аптеці”)
Add new record in Event manager:
field
value
field
value
event_type
StateChangeEvent
entity_type
MedicationRequest
entity_id
$.id
properties.is_blocked.new_value
false
event_time
$.update_at
changed_by
$.changed_by
Configuration parameters
Access to the method is defined by the scope medication_request:unblock. Permission for this scope is determined by the System administrator by configuring scopes in the context of clients and roles.
Get Medication request identifier from the URL. Check Medication request exists in OPS DB
in case of error - return 404 ("Medication request does not exist")
Validate user
Medication Request unblocking is allowed for user if he has one of the following active and approved employee that:
is anauthor of the Medication request (medication_request.employee_id)
has an approval on write Care plan if Medication request based on the Care plan (medication_request.based_on)
isMed_Admin from legal entity where Medication Request is created
in case of error - return 409 ("Only an author, employee with approval on care plan or med_admin from the same legal entity can unblock medication request")
Validation transition
Get Medication request by $.id in OPS DB. Check that Medication request status = ‘ACTIVE’
in case of error - return 409 ("Medication request must be in active status")
Get Medication request by $.id in OPS DB. Check that Medication request is blocked, i.e. is_blocked = true
in case of error - return 409 ("Medication request is already unblocked")
Validate block reason code
Validate $.block_reason_code is a value from MEDICATION_REQUEST_BLOCK_REASON dictionary
in case of error - return 422 ("value is not allowed in enum")
Check that $.block_reason_code is present in <EMPLOYEE_TYPE>_MEDICATION_REQUEST_UNBLOCK_REASON_CODES chart parameter for validated user
in case of error - return 422 ("Block reason code is not allowed for <employee_type>")
Your scope does not allow to access this resource. Missing allowances: medication_request:unblock
3
404
Medication request does not exist
Електронний рецепт не існує
4
409
Medication request is already unblocked
Електронний рецепт вже розблокований
5
409
Medication request must be in active status
Електронний рецепт має бути в статусі "Активний"
6
409
Only an author, employee with approval on care plan or med_admin from the same legal entity can unblock medication request
Лише автор та співробітник із доступом до плану лікування або медичний адміністратор взакладу, де було створено рецепт, може розблокувати електронний рецепт
7
Специфічні
8
422
Error
Помилка
9
422
Value is not allowed in enum
Недопустиме значення
10
422
Block reason code is not allowed for <employee_type>
Вказана причина блокування не може бути використана <даним типом співробітника>