BBahmni 한국어 매뉴얼검색
한국어 번역 완료
한국어English

Auto-Calculation of Observations

Purpose and Benefits

Bahmni supports auto-calculation of observations in forms. One can use this feature for calculated fields like BMI (Body Mass Index).

Refer to the screenshot below, where BMI and BMI values (Calculated Values) are shown in the Nutritional Values Display Control in the Patient Dashboard:

Calculated Values.png

Patient Dashboard

Steps

Below are mentioned the steps to be followed for BMI calculation. Similar steps can be used to capture any other Auto-Calculated observations.

1) Setup the BMI Data concept in OpenMRS, as a container for BMI and BMI Abnormal concepts. Refer to the screenshot below:

BMI Data Setup in OpenMRS

BMI Data.png

2) Setup BMI (For BMI Values) and BMI Status (For BMI Statuses such as Normal, Underweight, etc.) Concepts. Choose Class as "Computed" as these are Calculated Values. The screenshot below displays the BMI and BMI Status concepts setup in OpenMRS:

Setting up BMI Concept in OpenMRS

BMI.png

Setting up BMI Status Concept in OpenMRS

BMI Status.png

3) Configure Calculated Concepts as concept names in the dashboard.json config. Refer to the code snippet below:

"nutritionalValues": {
                "title":"Nutritional Values",
                "translationKey":"DASHBOARD_TITLE_NUTRITIONAL_VALUES_KEY",
                "name": "vitals",
                "isObservation": true,
                "displayOrder": 11,
                "dashboardParams": {
                    "conceptNames": [
                        "HEIGHT",
                        "Weight",
                        "BMI",
                        "BMI STATUS"
                    ],
                    "numberOfVisits": 2
                },

Refer to https://github.com/Bahmni/default-config/blob/master/openmrs/apps/clinical/dashboard.json for further information.

4) For auto-calculation of BMI, the latest instance of Height and Weight will be calculated from the groovy script and validated by referencing them with the BMI_chart. For further information refer to https://github.com/Bahmni/default-config/tree/master/openmrs/obscalculator.

Here are sample groovy script and BMI charts: BahmniObsValueCalculator.groovy관련 문서: BMI_chart.csv

원문 정보

Bahmni Wiki · CC BY-SA 4.0

원문 보기 ↗