Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. In the entity_mapping_type table, add a record to define the mapping between program and concept

    Code Block
    languagesql
    titleentity_mapping_type entry
    insert into entity_mapping_type(name, uuid, entity1_type, entity2_type, date_created) 
    values ('program_obstemplate', uuid(), 'org.openmrs.Program', 'org.openmrs.Concept', now())
  2. In the entity_mapping table, insert a record to create the mapping between a specific program and the specific concept

    Code Block
    languagesql
    titleentity_mapping entry
    insert into entity_mapping(uuid, entity_mapping_type_id, entity1_uuid, entity2_uuid, date_created) 
    values (uuid(), <id_of_the_record_created_in_step_1>, <uuid_of_program>, <uuid_of_concept>, now()) 

...

Configuring the dashboard and Medication tab to show data within program enrollment date range

 To view all the data in dashboard within and medication tab  within the program enrollment date range add this config to clinical/app.json.

Code Block
languagesql
titleentity_mapping entry
"config" : {
	"program": {
		"showDashBoardWithinDateRangeshowDetailsWithinDateRange" : true,
	}
}

 

...

 

Info

To associate programs to patients, please see this user guide

...