0% found this document useful (0 votes)
40 views4 pages

JSP Calls For Opd Registration: (Commonpatientregistration - JSP)

1. The document describes the process for OPD patient registration in a hospital management system. 2. It involves calling various methods to fetch existing patient data, populate details for new patients, and display the appropriate registration fields and options based on factors like the patient's type, insurance status, and country of implementation. 3. The registration page sources from different areas like the OPD dashboard, billing header, and patient profile page, and triggers different functionality based on whether it is for an OPD or IPD case and the country of implementation.

Uploaded by

Subodh Bopche
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views4 pages

JSP Calls For Opd Registration: (Commonpatientregistration - JSP)

1. The document describes the process for OPD patient registration in a hospital management system. 2. It involves calling various methods to fetch existing patient data, populate details for new patients, and display the appropriate registration fields and options based on factors like the patient's type, insurance status, and country of implementation. 3. The registration page sources from different areas like the OPD dashboard, billing header, and patient profile page, and triggers different functionality based on whether it is for an OPD or IPD case and the country of implementation.

Uploaded by

Subodh Bopche
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

OPD Registration

1. Jsp calls for OPD registration :


(CommonPatientRegistration.jsp)(Implementation country USA )

1.1. On page load of common patient registration , If reference type


is visit notes then it will call --> fetchExistingData().
1.1.1.FetchExistingData ():- a. will get data from getVisitNoterecords() by
reference Id,If response is not null then it will populate the data , else it will
load server date .
b. if reference ID id not null , then according to given roles respective combo boxes will
popullates,else it will call populatePatientDetailsForNewOPD()(In same Jsp).

c.depending on selected country selctInsuranceStore

1.1.2. populatePatientDetailsForNewOPD() :
a.will fetch by patientID and company ID -->
ClinicalEncounterRegistration.getPatientDemographicsRegistration(patientID,
document.getElementById('companyID').value,referenceType)

b.if resp is not null --> populate all data and checked
radiobuttons according to lastPatientType.

c.if REGULAR button is checked -->

BillingRulesFacade.listActiveRegularPatientCategory(patientCategory,
document.getElementById('companyID').value) will fetch data an dset patient category.
d.if CORPORATE/INSURANCE/TPA/HEALTHCAMP(for other than USA) &
INSURANCE(for USA):will fetch data from -->

CashlessProviderFacade.listActiveCashlessProviders(document.getElementById('companyID').
value, '', patientCategory, 'Insurance').

e. depending on lastBillingCategory approved Teriff will populate.


if(tariffStore.data.items[j].json[1] == patientDemo.lastTariff)
approved Teriff will populate
else approved Teriff will ‘’.

f.check if referenceType is VISIT_NOTES --> data from


rateCategoryStore will compared to lastCategory data of selected
patient if it is true then set this data to approvedRateCategory.
Else set approvedRateCategory =’’.

1.1.3. commonOptedNAproved.jsp
1.1.4.registrationSpecificdetails.jsp

gistration Page sources click on patientName from OPD Dashboard at the time of create

Registration Page sources click on patientName from OPD Dashboard at the time of create Registration Page
sources
click on patientName from OPD Dashboard at the time of create new patient via
regular/appointment
click on registration number in billing header
OnLoad{
check patient profile page for OPD / IPD
if( OPD )
Check implementation country
If ( USA )
design and deveopfunctionality according to USA

else if( INDIA )


design and deveopfunctionality according to INDIA
if( IPD )
Check implementation country
If ( USA ) design and deveopfunctionality according to USA
else if( INDIA )
design and deveopfunctionality according to INDIA
}
create new js file first declare all the combo fields create method for initilization of combo wrote all
the methods in correct sequence .

You might also like