From 4f101529ab41cb99a8b44c5a1b52a0a9773e9ea8 Mon Sep 17 00:00:00 2001 From: Vineet Sharma Date: Tue, 26 Nov 2024 09:27:58 +0530 Subject: [PATCH] (feat) O3-4185: Add form for IPD admission (#864) --- .../ampathforms/ipd_admission_request.json | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 distro/configuration/ampathforms/ipd_admission_request.json diff --git a/distro/configuration/ampathforms/ipd_admission_request.json b/distro/configuration/ampathforms/ipd_admission_request.json new file mode 100644 index 000000000..6e1ba2c5f --- /dev/null +++ b/distro/configuration/ampathforms/ipd_admission_request.json @@ -0,0 +1,67 @@ +{ + "name": "Ward Admission", + "pages": [ + { + "label": "Ward Request", + "sections": [ + { + "label": "Ward Details", + "isExpanded": "true", + "questions": [ + { + "type": "obsGroup", + "id": "inpatientDispositionConstruct", + "questionOptions": { + "concept": "CIEL:169405", + "rendering": "group" + }, + "questions": [ + { + "id": "disposition", + "type": "obs", + "required": true, + "questionOptions": { + "rendering": "radio", + "required": true, + "concept": "CIEL:169402", + "answers": [ + { + "concept": "CIEL:168619" + } + ] + }, + "validators": [] + }, + { + "id": "admitToLocation", + "type": "obs", + "required": true, + "questionOptions": { + "rendering": "ui-select-extended", + "required": true, + "concept": "CIEL:169403", + "datasource": { + "name": "location_datasource", + "config": { + "tag": "Admission Location" + } + } + } + } + ] + } + ] + } + ] + } + ], + "processor": "EncounterFormProcessor", + "encounter": "Transfer Request", + "encounterType": "Transfer Request", + "referencedForms": [], + "uuid": "xxxx", + "description": "Create an admission request to an inpatient ward", + "version": "1.0.0", + "published": true, + "retired": false +}