I Dont have any Insurance patients, all of my patients pay by cash, so the first encounter of every patient is done at the reception by the receptionist, later the doctor does new encounter. Therefore,in the Receipt of Payment Receptionist’s name is shown as the Provider. Is there anyway i can get the Doctors name(i.e. the providers name under the “choice” tab in demograpichs, in the Encounter history) as the Provider in Receipt of Payment???
You might give her a Frontdesk name’s name something like: “Nurse S.O. So-Soo, signed for Dr. Ahmed, and more of those like signed for Dr.B-ahmed” etc.
In the Demo I could not find any other solution, but Developers might be needed for your request.
Please help me. As my patient is all prepaid no insurance covered.
In my Clinic they are 3 to 4 Dr (ex Dental, Gynecologist & General Physician is there.
My receptionist does the duplicate first encounter and create payment bill by her name and sends the patient inside to dr room for further diagnosis, Encounter.
The problem is Patient some time mixed with different dr because there is no Dr Name in the payment slip.
There is option while filling Demographics-Patient details in-Choices- Provider. Dr Name.
Is it possible to print provider name in Payment slip or checkout?
Thank you once again for the entire team for the efforts taken to provide solution to all the members…
To include the “provider” under patient demographics into the payment receipt, you may need to customize the file interface/patient_file/front_payment.php. Do the following changes in the above mentioned file.
change the lines at 335 &336 as follows:
// Get the patient's name and chart number.
$patdata = getPatientData($form_pid, 'fname,mname,lname,pubpid,providerID');
$pro = sqlQuery("select fname,lname from users where id=?",array($patdata['providerID']));
Similarly add the following lines under line 451 after ‘Received By’ block: