Versions Compared

Key

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


Info

openIMIS components: Web Application v1.3.0 and later. 

Implementation roles required: [X] Implementer [ ] Developer [ ] Database manager

Implementation-related information can be configured in different ways. The user documentation explains bulk upload/download functionality of in general. In this page, we give examples of register files that can use by the functionality. 

...

Code Block
languagexml
themeRDark
linenumberstrue
<!DOCTYPE Diagnoses [
	<!ELEMENT Diagnoses (Diagnosis)*>
	<!ELEMENT Diagnosis (DiagnosisCode, DiagnosisName)>
	<!ELEMENT DiagnosisCode (#CDATA)>
	<!ELEMENT DiagnosisName (#CDATA)>
]>

An example of an XML file that uses and conforms to this DTD follows.

Code Block
languagexml
themeRDark
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<Diagnoses>
<Diagnosis><DiagnosisCode>A00</DiagnosisCode><DiagnosisName>Cholera</DiagnosisName></Diagnosis>
<Diagnosis><DiagnosisCode>A01</DiagnosisCode><DiagnosisName>Typhoid
	<Diagnosis>
		<DiagnosisCode>A00</DiagnosisCode>
		<DiagnosisName>Cholera</DiagnosisName>
	</Diagnosis>
	<Diagnosis>
		<DiagnosisCode>A01</DiagnosisCode>
		<DiagnosisName>Typhoid and paratyphoid fevers</DiagnosisName><DiagnosisName>
	</Diagnosis>
<Diagnosis><DiagnosisCode>A02</DiagnosisCode><DiagnosisName>Other
	<Diagnosis>
		<DiagnosisCode>A02</DiagnosisCode>
		<DiagnosisName>Other salmonella infections</DiagnosisName><DiagnosisName>
	</Diagnosis>
<Diagnosis><DiagnosisCode>A03</DiagnosisCode><DiagnosisName>Shigellosis</DiagnosisName></Diagnosis>
<Diagnosis><DiagnosisCode>A04</DiagnosisCode><DiagnosisName>Other
	<Diagnosis>
		<DiagnosisCode>A03</DiagnosisCode>
		<DiagnosisName>Shigellosis</DiagnosisName>
	</Diagnosis>
	<Diagnosis>
		<DiagnosisCode>A04</DiagnosisCode>
		<DiagnosisName>Other bacterial intestinal infections</DiagnosisName><DiagnosisName>
	</Diagnosis>
<Diagnosis><DiagnosisCode>A05</DiagnosisCode><DiagnosisName>Other	<Diagnosis>
		<DiagnosisCode>A05</DiagnosisCode>
		<DiagnosisName>Other bacterial foodborne intoxications, not elsewhere classified</DiagnosisName><DiagnosisName>
	</Diagnosis>
<Diagnosis><DiagnosisCode>A06</DiagnosisCode><DiagnosisName>Amebiasis</DiagnosisName></Diagnosis>
<Diagnosis><DiagnosisCode>A07</DiagnosisCode><DiagnosisName>Other protozoal intestinal diseases</DiagnosisName></
	<Diagnosis>
		<DiagnosisCode>A06</DiagnosisCode>
		<DiagnosisName>Amebiasis</DiagnosisName>
	</Diagnosis>
</Diagnoses>

A ready to use ICD10 first-level diagnoses list can be downloaded here: ICD10.xml

To upload the diagnoses list of the diagnoses please follow the instruction in the user manual

If there are errors in the diagnoses list or you want to add/remove diagnoses, the easier is to download the current list, do the modifications and upload the list again

Upload locations

The list of locations can be configured in different ways. The simplest and intuitive way is through the user interface. In this section, we explain how to configure the locations by uploading the list encoded as an XML document.

DTD definition of the XML file for uploading/downloading of locations is:

Code Block
languagexml
themeRDark
linenumberstrue
<!DOCTYPE Locations [
	<!ELEMENT Locations (Regions, Districts, Municipalities, Villages)>
	<!ELEMENT Regions (Region*)>
	<!ELEMENT Region (RegionCode, RegionName)>
	<!ELEMENT RegionCode (#CDATA)>
	<!ELEMENT RegionName (#CDATA)>
	<!ELEMENT Districts (District*)>
	<!ELEMENT District (RegionCode,DistrictCode, DistrictName)>
	<!ELEMENT RegionCode (#CDATA)>
	<!ELEMENT DistrictCode (#CDATA)>
	<!ELEMENT DistrictName (#CDATA)>
	<!ELEMENT Municipalities (Municipality*)>
	<!ELEMENT Municipality (DistrictCode,MunicipalityCode, MunicipalityName)>
	<!ELEMENT DistrictCode (#CDATA)>
	<!ELEMENT MunicipalityCode (#CDATA)>
	<!ELEMENT MunicipalityName (#CDATA)>
	<!ELEMENT Villages (Village*)>
	<!ELEMENT Village (MunicipalityCode,VillageCode, VillageName,MalePopulation ?, FemalePopulation ?, OtherPopulation,Families ?)>
	<!ELEMENT MunicipalityCode (#CDATA)>
	<!ELEMENT VillageCode (#CDATA)>
	<!ELEMENT VillageName (#CDATA)>
	<!ELEMENT MalePopulation (#CDATA)>
	<!ELEMENT FemalePopulation (#CDATA)>
	<!ELEMENT OtherPopulation (#CDATA)>
	<!ELEMENT Families (#CDATA)>
]>

An example of an XML file that uses and conforms to this DTD follows.

Code Block
languagexml
themeRDark
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<Locations>
  <Regions>
    <Region>
      <RegionCode>R1</RegionCode>
      <RegionName>Ultha</RegionName>
    </Region>
    <Region>
      <RegionCode>R2</RegionCode>
      <RegionName>Tahida</RegionName>
    </Region>
  </Regions>
  <Districts>
    <District>
      <RegionCode>R1</RegionCode>
      <DistrictCode>R1D1</DistrictCode>
      <DistrictName>Rapta</DistrictName>
    </District>
    <District>
      <RegionCode>R2</RegionCode>
      <DistrictCode>R2D1</DistrictCode>
      <DistrictName>Rajo</DistrictName>
    </District>
  </Districts>
  <Municipalities>
    <Municipality>
      <DistrictCode>R2D1</DistrictCode>
      <MunicipalityCode>R2D1M1</MunicipalityCode>
      <MunicipalityName>Jaber</MunicipalityName>
    </Municipality>
    <Municipality>
      <DistrictCode>R1D1</DistrictCode>
      <MunicipalityCode>R1D1M2</MunicipalityCode>
      <MunicipalityName>Jamu</MunicipalityName>
    </Municipality>
    <Municipality>
      <DistrictCode>R1D1</DistrictCode>
      <MunicipalityCode>R1D1M3</MunicipalityCode>
      <MunicipalityName>Adhi</MunicipalityName>
    </Municipality>
  </Municipalities>
  <Villages>
    <Village>
      <MunicipalityCode>R2D1M1</MunicipalityCode>
      <VillageCode>R2D1M1V1</VillageCode>
      <VillageName>Utha</VillageName>
      <MalePopulation>0</MalePopulation>
      <FemalePopulation>0</FemalePopulation>
      <OtherPopulation>0</OtherPopulation>
      <Families>0</Families>
    </Village>
	<Village>
      <MunicipalityCode>R1D1M2</MunicipalityCode>
      <VillageCode>R1D1M2V1</VillageCode>
      <VillageName>Jamula</VillageName>
      <MalePopulation>0</MalePopulation>
      <FemalePopulation>0</FemalePopulation>
      <OtherPopulation>0</OtherPopulation>
      <Families>0</Families>
    </Village>
	<Village>
      <MunicipalityCode>R1D1M3</MunicipalityCode>
      <VillageCode>R1D1M3V1</VillageCode>
      <VillageName>Rathula</VillageName>
      <MalePopulation>0</MalePopulation>
      <FemalePopulation>0</FemalePopulation>
      <OtherPopulation>0</OtherPopulation>
      <Families>0</Families>
    </Village>
  </Villages>
</Locations>

To upload the location list please follow the instruction in the user manual

If there are errors in the diagnoses list or you want to add/remove diagnoses, the easier is to edit from the user interface by accessing Administration → Locations from the menu