Admit, Discharge and Transfer Patients

Configuration

Setup Default Visit Type

  • The configuration for this field is mandatory.

  • The config will set the default visit type of the patient when the user attempts to admit the patient.


Sample Config
"defaultVisitType": "IPD"

Patient Movement Redirects

The following configurations have to be added to app.json

On Admission

This config will redirect to the configured page in the app while trying to admit the patient

"onAdmissionForwardTo": "#/patient/{{patientUuid}}/encounter/{{encounterUuid}}/bed"


On Transfer

This config will redirect to the configured page in the app while trying to transfer the admitted patient

"onTransferForwardTo": "#/patient/{{patientUuid}}/encounter/{{encounterUuid}}/bed"


On Discharge

This config will redirect to the configured page in the app while trying to discharge the admitted patient

"onDischargeForwardTo": "#/patient/search"


Setup Max Patients per Bed

The config is to define the number of patients a bed can accommodate at once.

The config is not mandatory and the default value is set to 3.

"maxPatientsPerBed" : 2


Capture Data on Patient Movement

Bahmni supports configuration to capture data on selecting the Patient Movement.

  • The configuration needs to be added under the dashboard section.
  • The concept name should be defined in openMRS.
  • Only one concept can be defined at a time.
"dashboard":{
                               "conceptName": "Adt Notes",
}


Configure Display Controls on IPD Dashboard

Display controls can be configured on the IPD module to give a snapshot of the captured observations.

The configuration should be added under the “dashboard" section

Sample Config
     "dashboard":{
               "translationKey": "DASHBOARD_TAB_GENERAL_KEY",
               "sections": {
               "vitals":{
                    "translationKey":"DASHBOARD_TITLE_VITALS_KEY",
                    "type": "vitals",
                   "displayOrder": 0,
                   "isObservation": true,
                   "dashboardConfig": {
                        "conceptNames": ["Vitals"],
                    "numberOfVisits": 2
                    }
           }
}

The Bahmni documentation is licensed under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)