Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Purpose and Benefits

The Visit Dashboard displays all details about a visit of the patient. On the top, a Visit Dashboard has a date control, that can allow the provider to browse visit details in the past for a patient. One can choose various "Display Controls" to configure what information is visible on the patient dashboard.

                                                                              Visit Dashboard


Steps

Configure Visit Display Control on Patient Dashboard

Tip

To reach visit dashboard, one has to configure this control on patient dashboard. Please follow the instructions to configure the visit control



Configure Visit Dashboard

Any display control can be configured in visit dashboard under sections in the config. Check Display Controls to know how to configure display controls. The following is the example config for patient visit dashboard.

Code Block
languagejs
titleSample Visit Dashboard Configuration
collapsetrue
{
    "general":{
        "translationKey": "DASHBOARD_TAB_GENERAL_KEY",
        "displayByDefault": true,
        "printing": {
            "title": "Bahmni",
            "header": "Visit",
            "logo": "../images/bahmniLogo.png"
        },
        "defaultSections": true,
        "sections": {
            "pivotTable":{
                "type": "pivotTable",
                "displayOrder": 0,
                "title": "Vitals Flowsheet",
                "config": {
                    "groupBy": "encounters",
                    "obsConcepts": [
                        "Vitals",
                        "Pulse",
                        "Diastolic",
                        "Systolic",
                        "Temperature",
                        "RR",
                        "SPO2",
                        "Height",
                        "WEIGHT",
                        "M/C Days"
                    ],
                    "labConcepts": ""
                }
            },
            "pacsOrders":{
                "type":"pacsOrders",
                "displayOrder": 1,
                "translationKey": "PACS_ORDERS_VISIT_PAGE_KEY",
                "config":{
                    "orderType": "Radiology Order"
                }
            }
        }
    },
    "dischargeSummary":{
        "translationKey": "DASHBOARD_TAB_DISCHARGE_SUMMARY_KEY",
        "printing": {
            "title": "Bahmni",
            "header": "Discharge Summary",
            "logo": "../images/bahmniLogo.png"
        },
        "sections": {
            "PatientInformation":{
                "type": "patientInformation",
                "displayOrder": 0,
                "config": {
                    "title": "PatientInformation",
                    "patientAttributes": ["caste", "class", "education", "occupation", "debt", "distanceFromCenter", "isUrban", "cluster","RationCard", "familyIncome"],
                    "addressFields": ["address1", "address2", "cityVillage", "countryDistrict"]
                }
            },
            "admissionDetails":{
                "type": "admissionDetails",
                "displayOrder": 1,
                "config": {
                    "showDetailsButton": true,
                    "translationKey": "DISCHARGE_SUMMARY_ADMISSION_DETAILS_KEY"

                }
            },
            "weightInitial":{
                "type": "observation",
                "displayOrder": 2,
                "translationKey":"DISCHARGE_SUMMARY_AT_ADMISSION_KEY",
                "config": {
                    "conceptNames": ["WEIGHT"],
                    "scope": "initial"
                }
            },
            "weightLatest": {
                "type": "observation",
                "displayOrder": 3,
                "translationKey":"DISCHARGE_SUMMARY_AT_DISCHARGE_KEY",
                "config": {
                    "conceptNames": ["WEIGHT"],
                    "scope": "latest"
                }
            },
            "diagnoses":{
                "type": "diagnosis",
                "displayOrder": 4,
                "config": {
                    "translationKey" : "DISCHARGE_SUMMARY_DIAGNOSIS_KEY",
                    "showCertainty": false,
                    "showOrder": false,
                    "showDetailsButton": true
                }
            },
            "clinicalNotes":{
                "type": "observation",
                "displayOrder": 5,
                "translationKey": "DISCHARGE_SUMMARY_CLINICAL_NOTES_KEY",
                "config": {
                    "conceptNames": [
                        "History and Examination Notes",
                        "Discharge Summary",
                        "Lab Investigation Notes",
                        "Radiology Notes",
                        "Other Notes"
                    ],
                    "scope": "latest",
                    "numberOfVisits": "1"
                }
            },
            "labInvestigations":{
                "type": "investigationResult",
                "displayOrder": 6,
                "config": {
                    "translationKey":"LAB_INVESTIGATION",
                    "showChart": true,
                    "showTable": false,
                    "showNormalLabResults": true,
                    "showCommentsExpanded": true,
                    "showAccessionNotes": true,
                    "numberOfVisits": 10,
                    "initialAccessionCount": 1,
                    "latestAccessionCount": 1
                }
            },
            "Treatments": {
                "type": "treatment",
                "displayOrder": 6,
                "config": {
                    "translationKey": "VISIT_TITLE_TREATMENTS_KEY",
                    "showFlowSheet": true,
                    "showListView": true,
                    "showOtherActive": false,
                    "showDetailsButton": true,
                    "showRoute": true,
                    "showDrugForm": true,
                    "showProvider":false
                }
            },
            "adviceOnDischarge":{
                "type": "observation",
                "displayOrder": 8,
                "translationKey":"DISCHARGE_SUMMARY_ADVICE_ON_DISCHARGE_KEY",
                "config": {
                    "conceptNames": [
                        "Additional Advice on Discharge",
                        "Follow up Date",
                        "Discharge Summary, Plan for follow up"
                    ],
                    "scope": "latest"
                }
            }
        }
    },
    "orders":{
      "translationKey": "DASHBOARD_TAB_ORDERS_KEY",
      "sections": {
          "Radiology Orders": {
              "type": "order",
              "displayOrder": 0,
              "translationKey": "Radiology Orders",
              "config": {
                  "translationKey": "Radiology Orders",
                  "name": "ordersControl",
                  "orderType": "Radiology Order",
                  "conceptNames": [
                      "Summary"
                  ]
              }
          }
      }

    }
}


Field NameDescription
title
translationKeyName of the visit tab. This will be displayed as the tab label
displayByDefaultWill always show this tab by default on load
printingHeader information when printing a visit tab
defaultSectionsWhen set to true, will include the default pre-configured patient visit widgets
sectionsAn array that lists all the widgets (and its configs) to be displayed in this tab. When 'defaultSections' is set to true, these sections will be append at the end of the default sections 





Panel
titleColorwhite
titleBGColor#1FA5A0
titleOn this page

Table of Contents


Panel
titleColorWhite
titleBGColor#1FA5A0
titleRelated Links

Display Controls

Visit Control