환자 대시보드 구성
목적과 이점
Patient Dashboard는 환자의 모든 의료 및 개인 정보를 빠르게 보여줍니다. 대시보드에 여러 표시 컨트롤을 추가하여 구현합니다. 별도 탭으로 나타나는 여러 대시보드를 구성할 수도 있습니다. 예를 들어 아래 화면에는 General, Patient Summary, Trends 등 서로 다른 대시보드가 추가되어 있으며 각 대시보드에는 자체 표시 컨트롤 집합이 있습니다.
Bahmni는 관련 환자 정보를 표시하도록 추가하고 구성할 수 있는 여러 표시 컨트롤을 지원합니다. 표시 컨트롤은 컨텍스트(환자, 방문 등)와 기타 매개변수(화면별 기능 전환)를 지정하는 설정을 받아 관련 데이터를 직접 가져온 뒤 애플리케이션에서 배치된 위치에 맞게 표시합니다.
각 대시보드에 ""를 구성할 수도 있습니다.

Patient Dashboard - General 탭

Patient Dashboard - Patient Summary 탭
구성
대시보드 탭 구성
General이라는 대시보드 탭을 구성하려면 아래 코드 조각을 참조하십시오.
{
"general": { //First tab that is called general
"translationKey": "DASHBOARD_TAB_GENERAL_KEY",
"displayByDefault": true,
"maxRecentlyViewedPatients": 10,
"sections": {
// Put appropriate display controls here.
// Read documentation: https://bahmni.atlassian.net/wiki/display/BAH/Display+Controls
}
},
"patientSummary": { //Second tab called patientSummary begins here......
}
}| Field Name | Description |
|---|---|
| translation Key | Name of the dashboard tab. This will be displayed as the tab label |
| displayByDefault | Will always show this tab by default on load of the dashboard. Possible values are true or false. It is mandatory to have at least one tab with displayByDefault set to true. |
| maxRecentlyViewedPatients | Number of patients to show in the "Recent Patients" dropdown |
| sections | List of all the widgets (and its configs) to be displayed in this tab |
자세한 내용은 https://github.com/Bhamni/default-config/blob/master/openmrs/apps/clinical/dashboard.json을 참조하십시오. Patient Dashboard에서 Patient Summary 같은 다른 탭도 같은 방식으로 구성할 수 있습니다.
탐색 구성
"Go To IPD Dashboard" 구성
"Go To IPD Dashboard" 버튼은 구현 환경에 맞게 구성할 수 있습니다. Clinical 모듈의 app.json 파일에서 "config" 절 안에 "adtNavigationConfig"라는 구성 요소를 추가합니다. 필요에 따라 수정할 수 있는 키-값 쌍은 세 개입니다.

privilege는 버튼을 보는 데 필요한 권한을 설명합니다.
forwardUrl은 사용자가 버튼을 클릭했을 때 이동할 URL을 지정합니다.
title은 버튼 위에 마우스를 올렸을 때 표시할 내용을 지정합니다.
"adtNavigationConfig": {
"privilege": "app:adt",
"forwardUrl": "../bedmanagement/#/bedManagement/patient/{{patientUuid}}",
"title": "Go to IPD dashboard"
}Bahmni Wiki · CC BY-SA 4.0