From 6fa213cff637eba97687f8a6a8f1457ed373a14f Mon Sep 17 00:00:00 2001 From: vijayanandtwks <113415613+vijayanandtwks@users.noreply.github.com> Date: Fri, 15 Dec 2023 09:05:26 +0530 Subject: [PATCH] BAH-3336 | Patient Stage dropdown is empty in programs module [Env - Docker.standard] (#237) * BAH-3336 | Arjun, Vijay | fix patient stage dropdown showing empty results in programs module * BAH-3336 | Vijay, Gokul | incorporate deskcheck comments * BAH-3336 | Vijay | incorporate PR comments with additional constraint --- bahmnicore-omod/src/main/resources/liquibase.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bahmnicore-omod/src/main/resources/liquibase.xml b/bahmnicore-omod/src/main/resources/liquibase.xml index 9afe7fcdd6..1589787665 100644 --- a/bahmnicore-omod/src/main/resources/liquibase.xml +++ b/bahmnicore-omod/src/main/resources/liquibase.xml @@ -4571,4 +4571,18 @@ + + + + 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' AND datatype = 'org.bahmni.module.bahmnicore.customdatatype.datatype.CodedConceptDatatype'; + + +