Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs427fa20team22
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
htmoss2
cs427fa20team22
Commits
8c1e0821
Commit
8c1e0821
authored
4 years ago
by
xuechen5
Browse files
Options
Downloads
Patches
Plain Diff
JSP: to display Pre-Registered Patient Info
parent
37b7cb9f
No related branches found
Branches containing commit
No related tags found
1 merge request
!22
Merge UC92 into Master
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientInfo.jsp
+221
-0
221 additions, 0 deletions
iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientInfo.jsp
with
221 additions
and
0 deletions
iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientInfo.jsp
0 → 100644
+
221
−
0
View file @
8c1e0821
<%@taglib
uri=
"/WEB-INF/tags.tld"
prefix=
"itrust"
%>
<%@page
errorPage=
"/auth/exceptionHandler.jsp"
%>
<%@page
import=
"java.util.ArrayList"
%>
<%@page
import=
"java.util.Date"
%>
<%@page
import=
"java.util.List"
%>
<%@page
import=
"java.text.DateFormat"
%>
<%@page
import=
"edu.ncsu.csc.itrust.action.EditPHRAction"
%>
<%@page
import=
"edu.ncsu.csc.itrust.dao.DAOFactory"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.PatientBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.AllergyBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.FamilyMemberBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.HealthRecord"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.MedicationBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.OfficeVisitBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.ProcedureBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.risk.RiskChecker"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.PersonnelBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.dao.mysql.PersonnelDAO"
%>
<%@page
import=
"edu.ncsu.csc.itrust.dao.mysql.PatientDAO"
%>
<%@page
import=
"edu.ncsu.csc.itrust.enums.TransactionType"
%>
<%@include
file=
"/global.jsp"
%>
<%
pageTitle
=
"iTrust - View Pre-Registered Patients Info"
;
%>
<%@include
file=
"/header.jsp"
%>
<%
PatientDAO
patientDAO
=
new
PatientDAO
(
prodDAO
);
PersonnelDAO
personnelDAO
=
new
PersonnelDAO
(
prodDAO
);
PersonnelBean
personnelb
=
personnelDAO
.
getPersonnel
(
loggedInMID
.
longValue
());
DateFormat
df
=
DateFormat
.
getDateInstance
();
String
switchString
=
""
;
if
(
request
.
getParameter
(
"switch"
)
!=
null
)
{
switchString
=
request
.
getParameter
(
"switch"
);
}
String
relativeString
=
""
;
if
(
request
.
getParameter
(
"relative"
)
!=
null
)
{
relativeString
=
request
.
getParameter
(
"relative"
);
}
String
patientString
=
""
;
if
(
request
.
getParameter
(
"patient"
)
!=
null
)
{
patientString
=
request
.
getParameter
(
"patient"
);
}
String
pidString
;
long
pid
=
0
;
if
(
switchString
.
equals
(
"true"
))
pidString
=
""
;
else
if
(!
relativeString
.
equals
(
""
))
{
int
relativeIndex
=
Integer
.
parseInt
(
relativeString
);
List
<
PatientBean
>
relatives
=
(
List
<
PatientBean
>
)
session
.
getAttribute
(
"relatives"
);
pid
=
relatives
.
get
(
relativeIndex
).
getMID
();
pidString
=
""
+
pid
;
session
.
removeAttribute
(
"relatives"
);
session
.
setAttribute
(
"pid"
,
pidString
);
}
else
if
(!
patientString
.
equals
(
""
))
{
int
patientIndex
=
Integer
.
parseInt
(
patientString
);
List
<
PatientBean
>
patients
=
(
List
<
PatientBean
>
)
session
.
getAttribute
(
"patients"
);
pid
=
patients
.
get
(
patientIndex
).
getMID
();
pidString
=
""
+
pid
;
session
.
removeAttribute
(
"patients"
);
session
.
setAttribute
(
"pid"
,
pidString
);
}
else
{
if
(
session
.
getAttribute
(
"pid"
)
==
null
)
{
pid
=
0
;
pidString
=
""
;
}
else
{
pid
=
(
long
)
Long
.
parseLong
((
String
)
session
.
getAttribute
(
"pid"
));
pidString
=
""
+
pid
;
}
}
if
(
pidString
==
null
||
1
>
pidString
.
length
())
{
response
.
sendRedirect
(
"../getPatientID.jsp?forward=hcp-uap/editPHR.jsp"
);
return
;
}
loggingAction
.
logEvent
(
TransactionType
.
PATIENT_HEALTH_INFORMATION_VIEW
,
loggedInMID
.
longValue
(),
pid
,
""
);
//else {
// session.removeAttribute("pid");
//}
EditPHRAction
action
=
new
EditPHRAction
(
prodDAO
,
loggedInMID
.
longValue
(),
pidString
);
pid
=
action
.
getPid
();
String
confirm
=
""
;
if
(
request
.
getParameter
(
"addA"
)
!=
null
)
{
try
{
confirm
=
action
.
updateAllergies
(
pid
,
request
.
getParameter
(
"description"
));
loggingAction
.
logEvent
(
TransactionType
.
PATIENT_HEALTH_INFORMATION_EDIT
,
loggedInMID
.
longValue
(),
pid
,
""
);
}
catch
(
Exception
e
)
{
confirm
=
e
.
getMessage
();
}
}
PatientBean
patient
=
action
.
getPatient
();
List
<
HealthRecord
>
records
=
action
.
getAllHealthRecords
();
HealthRecord
mostRecent
=
records
.
size
()
>
0
?
records
.
get
(
0
)
:
null
;
List
<
OfficeVisitBean
>
officeVisits
=
action
.
getAllOfficeVisits
();
List
<
FamilyMemberBean
>
family
=
action
.
getFamily
();
%>
<%@page
import=
"edu.ncsu.csc.itrust.exception.NoHealthRecordsException"
%><script
type=
"text/javascript"
>
function
showRisks
(){
document
.
getElementById
(
"
risks
"
).
style
.
display
=
"
inline
"
;
document
.
getElementById
(
"
riskButton
"
).
style
.
display
=
"
none
"
;
}
</script>
<%
if
(!
""
.
equals
(
confirm
))
{
%>
<span
class=
"iTrustError"
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
confirm
))
%></span><br
/>
<%
}
%>
<br
/>
<a
href=
"/iTrust/auth/hcp-uap/viewPreRegisteredPatientList.jsp"
style=
"text-decoration: none;"
>
<input
type=
button
value=
"Go Back to Pre-Registered Patient List"
onClick=
"location='/iTrust/auth/hcp-uap/viewPreRegisteredPatientList.jsp';"
>
</a>
<br
/><br
/>
<div
align=
center
>
<div
style=
"margin-right: 10px;"
>
<table
class=
"fTable"
align=
"center"
>
<tr>
<th
colspan=
"2"
>
Patient Information
</th>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Name:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getFullName
()))
%></td>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Address:
</td>
<td
>
<%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getStreetAddress1
()))
%><br
/>
<%=
""
.
equals
(
patient
.
getStreetAddress2
())
?
""
:
patient
.
getStreetAddress2
()
+
"
<
br
/
>"
%>
<%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getStreetAddress3
()))
%><br
/>
</td>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Phone:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getPhone
()))
%></td>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Email:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getEmail
()))
%></td>
</tr>
<tr>
<th
colspan=
"2"
>
Insurance Information
</th>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Provider Name:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getIcName
()))
%></td>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Address:
</td>
<td
>
<%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getIcAddress1
()))
%><br
/>
<%=
""
.
equals
(
patient
.
getIcAddress2
())
?
""
:
patient
.
getIcAddress2
()
+
"
<
br
/
>"
%>
<%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getIcAddress3
()))
%><br
/>
</td>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Phone:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
patient
.
getIcPhone
()))
%></td>
</tr>
</table>
<br
/>
</div>
<div
style=
"margin-right: 10px;"
>
<table
class=
"fTable"
align=
"center"
>
<tr>
<th
colspan=
"2"
>
Basic Health Records
</th>
</tr>
<%
if
(
null
==
mostRecent
)
{
%>
<tr><td
colspan=
2
>
No basic health records are on file for this patient
</td></tr>
<%
}
else
{
%>
<tr>
<td
class=
"subHeaderVertical"
>
Height:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
mostRecent
.
getHeight
()))
%>
in.
</td>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Weight:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
mostRecent
.
getWeight
()))
%>
lbs.
</td>
</tr>
<tr>
<td
class=
"subHeaderVertical"
>
Smoker?:
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
mostRecent
.
getSmokingStatus
())
+
" - "
+
(
mostRecent
.
getSmokingStatusDesc
()))
%></td>
</tr>
<%
}
//closing for "there is a most recent record for this patient"
%>
</table>
<br
/>
</div>
</div>
<br
/>
<br
/>
<%@include
file=
"/footer.jsp"
%>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment