OpenMRS resources: Difference between revisions

Content added Content deleted
imported>Chrishay7
imported>Chrishay7
Line 135: Line 135:


= Looking Through the Code Base =
= Looking Through the Code Base =
Once you can replicate the error, try to find and open the files related to the areas of interest (if provided). One way you can do this by opening up the OpenMRS project's folder in Sublime and clicking on Find->Find in Files. Then simply search for whatever might seem relevant to the issue.
Once you can replicate the error, try to find and open the files related to the areas of interest (if provided). One way you can do this is by opening up the OpenMRS project's folder in Sublime and clicking on Find->Find in Files. Then simply search for whatever might seem relevant to the issue.


Sample ticket: Search for PatientSearchCriteria, PatientServiceImpl, HibernatePatientDAO, and DWRPatientService. Ctrl-f through these to try to find something that might specify a minimum search requirement. Afterwards, look for similar variables via the Find in Files method. In this case, the same change was needed to be done in 2 files (since the java backend and javascript front end are separate).
Sample ticket: Search for PatientSearchCriteria, PatientServiceImpl, HibernatePatientDAO, and DWRPatientService. Ctrl-f through these to try to find something that might specify a minimum search requirement. Afterwards, look for similar variables via the Find in Files method. In this case, the same change was needed to be done in 2 files (since the java backend and javascript front end are separate).