This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @font-face { | |
| font-family: 'FontAwesome'; | |
| /* src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/85568/fontawesome-webfont.woff'); */ | |
| font-weight: normal; | |
| font-style: normal; | |
| } | |
| html, body { | |
| min-width: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| .link { | |
| fill: none; | |
| stroke: #666; | |
| stroke-width: 1px; | |
| } |
We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 57 columns, instead of 21 in line 4.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name,lat,long,fosaid bk,type,network,categoryCode,statusCode,pfbCode,dateOpened,directorName,address,adminunit,admnunit,fosaparentid,NIDT,TELT,fosa_id,numDoctors,numNurses,numParamedics,numAdministrators,villageName,provinceCode,districtCode,sectorCode,cellName,targetPopulation,sourcePopulation,yearPopulationEstimate,PO BOX,numberRooms,numberPatientBeds,numberAmbulances,numberCars,numberMotorcycles,electricitySourceCode,waterSourceCode,numberRefrigerators,numberComputers,businessTelephone,cellularTelephone,Radiophonie,Internet,services,preparedBy,preparedByTitle,submissionDate,approvedBy,approvedByTitle,approvalDate,provincename,districtname,sectorcode2,sectorname,parentfosaname,codetstrucsan | |
| Root,,,0,,,,,,,,,,,,,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, | |
| 3 Ages Polyclin,,,1296,CLIN,,private,,,,,,,,8,,,1296,,,,,,1,101,,,,,,,,,,,,,,,,,,,,,,,,,,2009,,,,,,XX | |
| AHA Clinic,,,1281,DISP,,private,,,,,,,,22,,,1281,,,,,,1,102,,,,,,,,,,,,,,,,,,,,,,,,,,2009,,,10208,Kimihurura,,XX | |
| AMIZERO,,,524,DISP,,private,,,,,,,,,,,524,,, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.openmrs.module.amrsreports.reporting.data; | |
| import org.openmrs.module.amrsreports.MOHFacility; | |
| import org.openmrs.module.reporting.data.BaseDataDefinition; | |
| import org.openmrs.module.reporting.data.person.definition.PersonDataDefinition; | |
| import org.openmrs.module.reporting.definition.configuration.ConfigurationProperty; | |
| import org.openmrs.module.reporting.definition.configuration.ConfigurationPropertyCachingStrategy; | |
| import org.openmrs.module.reporting.evaluation.caching.Caching; | |
| import org.openmrs.module.reporting.evaluation.parameter.Parameter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Test | |
| public void getIdentifierForSeed_shouldAutomaticallyIncreaseLengthOfIdentifierBeyondPaddedFirstIdentifierBaseIfNoLengthIsProvided() throws Exception { | |
| SequentialIdentifierGenerator generator = new SequentialIdentifierGenerator(); | |
| generator.setFirstIdentifierBase("00"); | |
| generator.setBaseCharacterSet("0123456789"); | |
| assertThat(generator.getIdentifierForSeed(1), is("01")); | |
| assertThat(generator.getIdentifierForSeed(100), is("100")); | |
| } |