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 2 Next »

-What is Patient Registration:

The Patient Registration screen (Android Studio- PatientIdentification.class) is the activity screen of android which consists of a list of various fields required to register the patient related data.

-Why is Patient Registration Configuration needed?

The Intelehealth app has a number of various deployment fields such as (Orissa, Philippines). These deployment fields has their own rules, regulations, culture, ethics, etc. Therefore, there comes a time where we need to configure the patient registration field based on the different deployment fields as some deployment fields may require a few fields whereas doesn’t require the other fields and wants to add their own fields.

-How is Patient Registration screen configured?

There is a config.json file created to configure the patient registration screen as per each deployment fields. Config file is a JSON file that stores data in key-value pairs.

-sample code:

{
"mFirstName":true,
"mMiddleName":false,
"mLastName":true

}

In the above code, the firstname and lastname fields are set to true which means only this fields would be visible to the end user of the app for that specific location. Whereas the field middlename is set to false which states that this field will be hidden for that specific location.

-Where to store the config.json file:

The config.json file has to be stored under the Android directory of our cloned app.

-Steps to configure the config.json file:

  1. config.json file is a deployment specific json file which contains values based on different locations.

  2. To edit → right click on config.json file → open with → notepad.

3. Edit the changes:

a. State the Boolean value as true for each of the required field of the patient registration form which are required.

b. State the Boolean value as false for each of the required field of the patient registration form which are not required.

4. Save the changes made:

Click on File → Save.

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.