Table of Contents |
---|
Access to patient medical data is now managed by ABAC module, current chapter is no longer actual.
...
Search for declarations using user_id and client_id
- Select party_id from PRM.Party_users where
- PRM.Party_users.user_id = user_id
- Select IDs from PRM.Employees where
- PRM.Employees.party_id = Select 1.
- PRM.Employees.legal_entitty_id= client_id
- Select person_id from OPS.Declarations where
- OPS.Declarations.employee_id IN Select 2.
- OPS.Declarations.status IN (active, pending_verification)
- Select user_id from PRM.Party_users where
- PRM.Party_users.party_id = Select 1.
- Write all selected records into Redis in the structure:
user_id | client_id | | [{person_id}|
Search for declarations using employee_id
- Select party_id and client_id from PRM.Employees where PRM.Employees.id= employee_id
- Select user_id from PRM.Party_users where
- PRM.Party_users.party_id = party_id
- Select IDs from PRM.Employee where
- PRM.Employee.party_id = Select 2.
- PRM.Employee.legal_entitty_id= client_id
- Select person_id from OPS.Declarations where
- OPS.Declarations.employee_id = Select 3.
- OPS.Declarations.status IN (active, pending_verification)
- Write all selected records into Redis in the structure:
user_id | client_id | | [{patient_id}|
The data in the Redis expires after N minutes or when declared event happens:
...