Closed MargaretNjenga closed 1 month ago
[x] Update the practitioner creation form to add the National ID and Mobile Phone number input fields
Field name | Required | Field Type | Field Options | Field Hint |
---|---|---|---|---|
National ID | ✓ | Text Field | Enter National ID | |
Mobile Phone number | ✓ | Text Field | Enter Mobile phone number |
[x] Extract the National ID to the Practitioner.Identifier
property on the Practitioner resources.
"type": {"coding":[{"system":"http://smartregister.org/codes/naitonal_id","code":"NationalID","display":"Naitonal ID"}],"text":"National ID"}
"use": "offical"
[x] Extract the Mobile phone number to the Practitioner.telecom
property on the Practitioner resources.
{"system": "phone", "value": "01234566788", "use": "mobile"}
. [x] These 2 fields will not be used by everyone so we should create a namespace giz_path_eir
[x] Update the user management vie details page to also display the National ID and Mobile phone number
{
"resourceType": "Practitioner",
"id": "ab929110-6918-4d0b-8961-13cce4d5c76b",
"meta": {
"versionId" : "1" ,
"lastUpdated": "2024-03-25T16:26:29.077+00:00",
"source" : "#c06ac1e4cfc0ae90"
},
"identifier": [
{"use": "official", "value": "ab929110-6918-4d0b-8961-13cce4d5c76b"},
{"use": "secondary", "value": "76f11bf7-0323-429f-bc7c-481f2f29fc51"},
{
"use": "offical",
"type": {
"coding": [
{
"system" : "http://smartregister.org/codes/naitonal_id",
"code" : "NationalID" ,
"display": "Naitonal ID"
}
],
"text": "National ID"
},
"value": "342345231543"
}
],
"active": true,
"name": [
{
"use": "official",
"family": "DEMO",
"given": ["EUSM"]
}
],
"telecom": [
{"system": "email" },
{"system": "phone", "value": "01234566788", "use": "mobile"}
]
}
Feature Use Case
One of the deliverables for the GIZ/PATH-EIR project is RapidPro integration - to enable sending of reminders based on determined schedules. The following practitioner details will be collected:
However, the fields, National ID and Mobile phone number are not available on the FHIR Web Interface.
Acceptance criteria
Include the following Fields on the "Add User" menu item FHIR Web interface:
Project Contact
Margaret Njenga
Relevant Information
Related to issue: https://github.com/onaio/data-solutions/issues/444