Wiki Spaces
Documentation
Projects
Resources
Get Help from Others
Q&A: Ask OpenMRS
Discussion: OpenMRS Talk
Real-Time: IRC Chat | Slack
The register module provides a conceptual framework for entering data on those patients in a way that: eases data entry & accuracy by matching the OpenMRS entry to the data source (usually paper files created at point of care), ties easily back to individual patient records to connect registers to patient data, and collects data elements to enable better supervision of treatment programs.
To create a new Register click ‘Manage Register’ link in Administration Page
1. In ‘Manage register’ Page click on ‘Add Register’ link to create a new Register
2. Provide the appropriate name and description for the register
3. Select the Register Type (Visit or Program)
4. Select appropriate HtmlForm designed for this register. The HtmlForm should have details of the patient /encounter/observation fields
Note:A new HTML form can be created through “New HTML form” link in the “Manage HTML form” page.
5. Click on ‘Save Register’ button to save the register
1. Click on Register Link in Header Menu
2. Select a Register and Location for which the patient has to be added
3. In the add row section enter the name of the patient to add an existing patient to the regitster or if
the patient is not found add the patient by clicking ‘Create a new patient’ link
4. On clicking the existing patient or the ‘Create a new patient’ link a popup appears based on the html form assigned to the register
5. Enter the Patient Details and Encounter details associated to the form and hit the ‘EnterForm’ button(Note :the UI depends on the Html form associated to a register)
6. The Patient will be added to the result section as shown below
Note: The result section is paginated with the last page being displayed with the most recent record.
<htmlform> <table> <excludeIf velocityTest="$patient.id"> <tr> <td>Name :</td> <td> <patient field="name"/> </td> </tr> <tr> <td>Gender : </td> <td> <patient field="gender"/> </td> </tr> <tr> <td>Age :</td> <td> <patient field="age"/> </td> </tr> <tr> <td> Identifier :</td> <td> <patient field="identifier" identifierTypeId="2" /> </td> </tr> <tr> <td> Identifier Location :</td> <td> <patient field="identifierLocation"/> </td> </tr> </excludeIf> <includeIf velocityTest="$patient.id"> <tr> <td>Name:</td> <td> <lookup expression="patient.personName"/> </td> </tr> <tr> <td>Identifier:</td> <td> <lookup expression="patient.patientIdentifier.identifier"/> </td> </tr> <tr> <td>Identifier Type:</td> <td> <lookup expression="patient.patientIdentifier.identifierType"/> </td> </tr> <tr> <td>Identifier Location:</td> <td> <lookup expression="patient.patientIdentifier.location"/> </td> </tr> <tr> <td>Gender:</td> <td> <lookup expression="patient.gender"/> </td> </tr> <tr> <td>Birthdate:</td> <td> <lookup complexExpression="#if( \$patient.birthdateEstimated ) ~#end"/> <lookup expression="patient.birthdate"/> (Age: <lookup expression="patient.age"/>) </td> </tr> </includeIf> <tr> <td>Encounter Location :</td> <td> <encounterLocation/> </td> </tr> <tr> <td>Encounter Provider :</td> <td> <encounterProvider role="Provider"/> </td> </tr> <tr> <td>Encounter Date : </td> <td> <encounterDate showTime="true" default="now"/> </td> </tr> <tr> <obsgroup groupingConceptId="1234"> <td>LEFT LOWER EXTREMITY Group :</td> <td> <obs conceptId="5089" labelText="Weight"/> <obs conceptId="5090" labelText="Height"/> </td> </obsgroup> </tr> <tr> <td>Red blood cell count</td> <td> <obs conceptId="679" labelText="RBS"/> </td> </tr> </table> <submit/> </htmlform>
The Register Module can be downloaded here: Register Module
1.Register - Admin
2.Adding a new Register
3.A Sample Visit Register
4.Add a new Patient to a register
5.Add an existing patient to a register
The following privileges are the OpenMRS privileges used by the module. You can assign them to users or groups of users according to the realities of your own OpenMRS implementation.
Starting in release version 1.2: To have a register appear on the OpenMRS patient dashboard in its own tab containing the register entries for that patient, you just have to specify the formId or uuid of the register form (see Administration/Manage Forms to get the formID) in the settings (formerly Global Properties from 1.8 downwards) register.showDashboardTabForHtmlForm. And, your users need to have the View Register Module Patient Dashboard Tabs privilege.
NOTE: after changing the global property register.showDashboardTabForHtmlForm, you must stop and restart the module for the global property to take affect. This is because tab extensions to the patient dashboard are always registered at module startup -- this is how extensions work in OpenMRS.
For complete instructions see this page: Patient Dashboard Rendering
1 Comment
user-7ac40
I've installed this module... but when I set up a register there is no value in the following pulldown and I cannot create a register by leaving that value blank. Any ideas? TIA