Skip to content

Commit

Permalink
PEP Registration and Followup Grid Columns updated
Browse files Browse the repository at this point in the history
melkam-mekonnen committed Feb 5, 2024
1 parent 1dd732a commit 9f9825e
Showing 4 changed files with 35 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/forms/followup/followup.json
Original file line number Diff line number Diff line change
@@ -1803,11 +1803,11 @@
"answers": [
{
"concept": "159468AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"label": "Physically able to work"
"label": "Working"
},
{
"concept": "160026AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"label": "Patient ambulatory"
"label": "Ambulatory"
},
{
"concept": "162752AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
2 changes: 1 addition & 1 deletion src/forms/intake-a/intake-a.json
Original file line number Diff line number Diff line change
@@ -456,7 +456,7 @@
"validators": []
},
{
"label": "Occupation",
"label": "Marital Status",
"type": "obs",
"required": false,
"id": "childsCareGiverMaritalStatus",
14 changes: 14 additions & 0 deletions src/pages/post-exposure/tabs/post-exposure-followup.component.tsx
Original file line number Diff line number Diff line change
@@ -38,6 +38,20 @@ const columns = [
return getData(encounter, "21ea1d83-acd7-4c99-b4cc-33a90e6dd7d7");
},
},
{
key: "sideEffect",
header: "Side Effect",
getValue: (encounter) => {
return getData(encounter, "164377AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA");
},
},
{
key: "remark",
header: "Remark",
getValue: (encounter) => {
return getData(encounter, "161011AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA");
},
},
{
key: "actions",
header: "Actions",
Original file line number Diff line number Diff line change
@@ -32,13 +32,26 @@ const columns = [
},
},
{
key: "eligible",
header: "Eligible",
key: "sourcePerson",
header: "Source Person Status",
getValue: (encounter) => {
return getData(encounter, "78dc1be4-4668-4170-b994-fc5e9a697e56");
return getData(encounter, "dc23b554-65b1-479a-aeeb-b47dc9fc2f7e");
},
}
,
},
{
key: "pepRegimen",
header: "PEP Regimen",
getValue: (encounter) => {
return getData(encounter, "17c0da08-509d-483f-905c-01c0c9ddd72a");
},
},
{
key: "timeBetweenExposure",
header: "Time b/n Exposure & PEP",
getValue: (encounter) => {
return getData(encounter, "0885bb1e-6a2e-47d0-a597-8e8da07e4e59");
},
},
{
key: "actions",
header: "Actions",

0 comments on commit 9f9825e

Please sign in to comment.