-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-3844 | Add. IPD Dashboard Config
* add. configs to enable IPD dashboard * BAH-3844 | remove Intake/Output and Patient feeding record Display controls * [Rahul] | BAH-3844 | Add. Enable IPD Features * BAH-3844 | Feedbacks incorporated * [Rahul] | BAH-3844 | Add. Care View Config --------- Co-authored-by: Rahul Ramesh <[email protected]> Co-authored-by: Rahul Ramesh <[email protected]>
- Loading branch information
1 parent
260c915
commit 5d9d818
Showing
6 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"pageSizeOptions": [10,20,30,40,50], | ||
"defaultPageSize": 10, | ||
"timeframeLimitInHours": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"sections": [ | ||
{ | ||
"title": "Vitals and Nutritional Values", | ||
"componentKey": "VT", | ||
"displayOrder": 1, | ||
"refreshKey": 1 | ||
}, | ||
{ | ||
"title": "Allergies", | ||
"componentKey": "AL", | ||
"displayOrder": 2, | ||
"refreshKey": 2 | ||
}, | ||
{ | ||
"title": "Diagnosis", | ||
"componentKey": "DG", | ||
"displayOrder": 3, | ||
"refreshKey": 3 | ||
}, | ||
{ | ||
"title": "Treatments", | ||
"componentKey": "TR", | ||
"displayOrder": 4, | ||
"refreshKey": 4 | ||
}, | ||
{ | ||
"title": "Nursing Tasks", | ||
"componentKey": "NT", | ||
"displayOrder": 5, | ||
"refreshKey": 5 | ||
}, | ||
{ | ||
"title": "Drug Chart", | ||
"componentKey": "DC", | ||
"displayOrder": 6, | ||
"refreshKey": 6 | ||
} | ||
], | ||
"nursingTasks": { | ||
"timeInMinutesFromNowToShowTaskAsRelevant": 30, | ||
"timeInMinutesFromNowToShowPastTaskAsLate": 60, | ||
"timeInMinutesFromStartTimeToShowAdministeredTaskAsLate": 60 | ||
}, | ||
"drugChart": { | ||
"timeInMinutesFromNowToShowPastTaskAsLate": 60, | ||
"timeInMinutesFromStartTimeToShowAdministeredTaskAsLate": 60 | ||
}, | ||
"drugChartSlider": { | ||
"timeInMinutesToDisableSlotPostScheduledTime": 60 | ||
}, | ||
"enable24HourTime": false, | ||
"medicationTags": { | ||
"asNeeded": "Rx-PRN", | ||
"Immediately": "Rx-STAT", | ||
"default": "Rx", | ||
"emergency": "EMERG" | ||
}, | ||
"shiftDetails": { | ||
"1": { "shiftStartTime": "08:00", "shiftEndTime": "19:00" }, | ||
"2": { "shiftStartTime": "19:00", "shiftEndTime": "08:00" } | ||
}, | ||
"intakeOutputConfig": { | ||
"periodDetails": { | ||
"startTime": "08:00", | ||
"durationInHours": "24" | ||
}, | ||
"normalHighValue": 10000, | ||
"normalLowValue": 0, | ||
"timeConceptNames": ["Intake Date & Time", "Output Date & Time"], | ||
"intakeRouteConcept": "Intake Route", | ||
"intakeQuantityConcept": "Intake Quantity", | ||
"outputRouteConcept": "Output Route", | ||
"outputQuantityConcept": "Output Quantity", | ||
"dashboardConfig": { | ||
"numberOfVisits": 10, | ||
"conceptNames": ["Intake Section", "Output Section"] | ||
} | ||
}, | ||
"vitalsConfig": { | ||
"latestVitalsConceptValues": { | ||
"spO2": "Arterial Blood Oxygen Saturation (Pulse Oximeter)", | ||
"weight": "Weight", | ||
"bmi": "BMI", | ||
"respiratoryRate": "Respiratory Rate", | ||
"systolicPressure": "Systolic blood pressure", | ||
"diastolicPressure": "Diastolic blood pressure", | ||
"temperature": "Temperature", | ||
"pulse": "Pulse", | ||
"height": "Height" | ||
}, | ||
"vitalsHistoryConceptValues": { | ||
"spO2": "Arterial Blood Oxygen Saturation (Pulse Oximeter)", | ||
"weight": "Weight", | ||
"bmi": "BMI", | ||
"respiratoryRate": "Respiratory Rate", | ||
"systolicPressure": "Systolic blood pressure", | ||
"diastolicPressure": "Diastolic blood pressure", | ||
"temperature": "Temperature", | ||
"pulse": "Pulse", | ||
"height": "Height", | ||
"muac": "Mid-upper arm circumference" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
{ | ||
"type": "PATIENT_ADMIT", | ||
"tasks": [] | ||
}, | ||
{ | ||
"type": "SHIFT_START_TASK", | ||
"tasks": [] | ||
}, | ||
{ | ||
"type": "ROLLOVER_TASK", | ||
"tasks": [] | ||
} | ||
] |