Versions Compared

Key

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

...

  • Patient Count(PATIENT_COUNT) - Number of patients for new registration with Bahmni

  • Create Encounters(sCreateEncounterS_CREATE_ENCOUNTER) - y/n - Flag to create encounters for the patients registered above

  • Encounter Count(ENCOUNTER_COUNT) - Number of patients that needs an encounter

  • Upload Data(sUploadCsvS_UPLOAD_CSV) - y/n - Flag to upload the created csv files to Bahmni

config.yaml

Code Block
patientProfileFileNamePATIENT_PROFILE_FILE_NAME: output/registrations.csv
encounterProfileFileNameENCOUNTER_PROFILE_FILE_NAME: output/encounters.csv
registrationIndexStartPointREGISTRATION_INDEX_START_POINT: 1011
patientRegistrationStartDayPATIENT_REGISTRATION_START_DAY: "2014-02-11"
baseUrlBASEURL : Required Bahmni URL
userUSERNAME: admin username
passwordPASSWORD: admin password
locationLOCATION: valid location
regInitial:
PERF
//Default Configuration Parameters
regInitialREG_INITIAL: PERF
PATIENT_COUNT: 10
sCreateEncounterS_CREATE_ENCOUNTER: y
ENCOUNTER_COUNT: 10
sUploadCsvS_UPLOAD_CSV: y

Glossary

  • patientProfileFileName PATIENT_PROFILE_FILE_NAME - path of the registrations.csv file where the new patient details are available

  • encounterProfileFileName ENCOUNTER_PROFILE_FILE_NAME - path of the encounters.csv file where the encounters (previous visit related information of the patients) are available

  • registrationIndexStartPoint REGISTRATION_INDEX_START_POINT - last four ending digits of the unique ID created for the patient

  • patientRegistrationStartDay PATIENT_REGISTRATION_START_DAY - reference date to create a random registration date

  • baseUrl BASEURL - Bahmni URL to upload the created csv files

  • user USERNAME - admin user

  • password PASSWORD - admin password

  • location LOCATION - login location of the admin user

  • regInitial REG_INITIAL - first four letters of the patient ID

  • PATIENT_COUNT - default patients count, value: 10

  • sCreateEncounter S_CREATE_ENCOUNTER - defaulted to y(yes) to create encounters for the above patients

  • ENCOUNTER_COUNT - default encounters count for each patient, value: 10

  • sUploadCsv S_UPLOAD_CSV - defaulted to y(yes) to upload the created csv files to Bahmni database

...