From 7ba57fd4e34646f49116bc8c8eb53795b41b028e Mon Sep 17 00:00:00 2001 From: vijayanandtwks Date: Wed, 6 Dec 2023 20:32:03 +0530 Subject: [PATCH] BAH-3336 | Arjun, Vijay | fix patient stage dropdown showing empty results in programs module --- bahmnicore-omod/src/main/resources/liquibase.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/bahmnicore-omod/src/main/resources/liquibase.xml b/bahmnicore-omod/src/main/resources/liquibase.xml index 9afe7fcdd6..2207cf8f49 100644 --- a/bahmnicore-omod/src/main/resources/liquibase.xml +++ b/bahmnicore-omod/src/main/resources/liquibase.xml @@ -4571,4 +4571,19 @@ + + + + SELECT COUNT(*) FROM program_attribute_type where name = 'Stage' AND datatype = + 'org.bahmni.module.bahmnicore.customdatatype.datatype.CodedConceptDatatype'; + + + Update datatype of patient stage program attribute type + + UPDATE program_attribute_type + SET datatype = 'org.openmrs.customdatatype.datatype.ConceptDatatype' + WHERE name = 'Stage'; + + +