How can I print the Transfer, Discharge, Lab Test or vitals encounters of a patient patient in any visit (either past or active visit).
The scenario is: when a patient is transferred from one ward to another, the provider will record the transfer encounter and also print a transfer slip for that patient to show it in destination ward. Also when a patient is discharged, the patient will get a discharge slip to show it in exit counter to close his file.
@dkayiwa: thank you for help in extending XReports 1.9 functionality to be able add any report to patient dashboard. Could you please extend the json to handle the printing of encounters based on type.
In report json (Extension field), if we define the encounter type then for each encounter in all visits of a patient the print icon should appear as shown in attached image. by clicking on print icon, patient-id and encounter-id should be passed to report as parameter.
I would like to print all the encounters of a specific visit of a patient. In this scenario i need to have visit id and join it will all relevant encounters.
My main purpose is to be able list types of encounters in XReport JSON (in Extension value) and a print button should appear for those encounters. When I click on print button then encounterID and PatientID should be send as parameter to the report.
I want to print Visit Note and Transfer encounters separately. when a patient visits a doctor then end of the visit i should take print out of his visit note and attach it to his physical file. or when patient is transferred to another ward, I should take print out of his transfer encounter and give him to show in another ward to be admitted.
Even if a patient ask for his Visit Note of his old visit then we should be able to print it for patient.
Here are the screenshots:
I am thinking for an alternative way to have print button for the encounter. As much I learned, I should customize all forms such as discharge, vitals, clinical note. Then add print button inside each form like following screenshot,
I will set the href value as report URL but this href should be created dynamically
http://qa-refapp.openmrs.org/xreports/runReports.page?patientId={{patient.patientId}}&reportId=5$encounterId={{encounter.id}}
how can i set the encounterId, patientId and visitId ?
@dkayiwa: I have designed reports that need two parameters 1. Encounter ID 2. Patient ID
In your old post, you have mentioned that parameters should be passed as in URL Query string. I am also doing same but the report is not printed.
but I try to print the report from Home>XReports>Run Reports and entered encounterId and patientId, the report is printed correctly. but the patientId and encouterId are not listed in URL Query string.
@dkayiwa: I feel this is the right controller that would handle the request for a report with paramenters
but I is called only on submit action and then redirect the page to show the report.
Better option will be to create different controller which will get parameters in URL Query string and send those parameters to onSubmit() controller to avoid duplication of code.