Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Current »

Purpose and Benefits

This page captures basic configurations that are required to be done in OpenELIS.

Steps

1. Configure the Organization

OpenELIS needs an Organization to be defined. This will be different for different implementations. To add an organization, go to "Administration" screen in OpenELIS.

Configuring default organizationAdd the following sql as migration in <implementation-config>/openelis/migrations/liquibase.xml  to configure the 'defaultOrganizationName' for the implementation.

The 'defaultOrganizationName' is needed to sync department from openMRS to openELIS. In the SQL below, 'Bahmni' is used as the organization name, and should be replaced with the organization name as per the implementation.

Health centre has been removed from OpenELIS. However existing features such as sync from OpenMRS to ELIS, patient creation in ELIS, ELIS reports and flow-back of lab results have not been interrupted and continue to function as such.

INSERT INTO site_information(id, name, lastupdated, description, value, encrypted, value_type) VALUES ( nextVal( 'site_information_seq' ) , 'defaultOrganizationName', now(), 'Default organization name', 'Bahmni', 'f', 'text' );


2.Configure the Hospital Logo, Name and Address

  • To configure hospital logo - add the logo image in <implementation>_config/openelis/images folder in the name of  labLogo.jpg as the name of the image file. (Puppet deploy will take care that it is added to the right folder to be picked up from for the report).
  • If you do not want to display logo for any implementation - update site_information table clinlims with name ='useLogoInReport' and set value  to false.
  • To configure Hospital Name - add migration - which updates site_information table in clinlims with name = 'SiteName' and set  value as 'name of the hospital'
  • To configure Hospital address - add migration - which updates site_information table in clinlims with column name = 'additional site info' and set value as 'address for the hospital'

3. Configuration through OpenELIS Admin UI

  • In the OpenELIS, go to Administration section.
  • Select "Printed Reports Configuration" to get to Report configurations.
  • Edit "SiteName" to update the Hospital name.
  • Edit "additional site info" to update Site address or any one liner about hospital.
  • Edit "lab logo" to  upload the Logo file.
  • Set "useLogoInReports" to "true" to ensure that Hospital Logo is displayed on the report.


  • No labels