Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Current »

Configuration

Setup Default Visit Type

  • The config is a mandatory field

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

  • If the visit of the patient is not opened then on trying to admit the patient with closed visit, the visit will will be set to the default visit type (here “IPD”)

  • If the visit of the patient is opened say OPD then the user would be prompted to choose an option whether to continue with the current visit (OPD) or open the new visit type (default visit type “IPD”)

  • If the opened visit is of default visit type (IPD) and the user is trying to admit the patient then the patient will be admitted to the current opened visit (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. This was introduced to support the maternity facility use case.

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
                    }
           }
}
  • No labels