새 Forms React 표시 컨트롤
목적
새 Forms 2 React 표시 컨트롤은 Consultation → Observation Form에서 추가한 Forms 2 양식을 나열하도록 설계되었습니다. 구성된 방문 횟수 안에서 생성된 양식을 표시하며 양식 상세 정보를 보고 편집할 수 있습니다. 새로운 기능은 무엇입니까?
새 Forms 2 React 표시 컨트롤은 사용자 인터페이스를 개선하고, 제공자 정보를 포함한 모든 양식 제출을 종합적으로 보여주며, 더 나은 구성과 편집 기능을 제공하여 기존 컨트롤을 크게 개선합니다.
- UI 개선: React로 구축한 새 표시 컨트롤과 향상된 사용자 인터페이스. 모든 제출 보기: 특정 양식의 모든 제출을 제공자 이름과 함께 나열하여 의사가 자신이나 다른 의사가 이전에 수집한 상세 정보를 볼 수 있습니다. 제공자 표시: 양식을 작성한 제공자 또는 의사의 이름을 표시합니다. 양식 그룹화: 같은 양식의 여러 제출을 묶고 축소 보기에서 작성된 모든 양식을 표시합니다. 편집 기능: 양식의 모든 버전을 편집할 수 있도록 개선했습니다. 활성 진료에 속하지 않은 양식의 편집 아이콘을 숨기는 구성 옵션도 제공합니다. 멀티미디어 지원: 양식으로 업로드한 이미지, PDF 및 동영상을 볼 수 있습니다. 수집한 메모와 함께 이미지·동영상 썸네일을 표시하며 모달에서 이미지를 보고 동영상을 재생할 수 있습니다.
화면 예시:

구성:
샘플 구성:
환자 대시보드에 표시하려면 clinical/dashboard.json에 추가합니다.
"forms-v2-react": {
"type": "formsV2React",
"displayOrder": 5,
"dashboardConfig": {
"title": null,
"maximumNoOfVisits": 10,
"showEditForActiveEncounter": true,
"forms": [
"Vitals",
"Consultation",
"Lab Results"
]
},
"translationKey": "Observation Forms"
}주요 필드 표
| Key | Info | Mandatory |
|---|---|---|
| forms-v2-react | This is the key mentioned for the forms2 form react display control | Y |
| type | Indicates the display control. For React Forms2 Control, value of type should be formsV2React | Y |
| displayOrder | The order in which the display control will be displayed | N |
| dashboardConfig | Indicates configurations for the patient dashboard | Y |
| maximumNoOfVisits | Specifies the maximum number of visits for which to display data | N |
| showEditForActiveEncounter | This is to show the edit icon based on active encounter. If it is set to true, the edit icon will be displayed for the forms filled within active encounter. If false or not provided, edit icon will be displayed for all versions of forms. | N |
| translationKey | Internationalise the display control | N |
| forms | Optional list of observation form names to display. When omitted, all observation forms are displayed. Invalid form names are ignored. | N |
forms 설정을 사용하여 선택한 관찰 양식만 표시할 수 있습니다.
- forms를 구성하지 않으면 모든 관찰 양식을 표시합니다(기본 동작). forms가 빈 목록([])이면 관찰 양식을 표시하지 않습니다. 잘못된 양식 이름은 무시합니다.
원문 정보
원문 보기 ↗Bahmni Wiki · CC BY-SA 4.0