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
45701e18
Commit
45701e18
authored
4 years ago
by
xuechen5
Browse files
Options
Downloads
Patches
Plain Diff
Get all Pre-Registered Patient to HCP's screen for approval.
parent
12fdc4c8
No related branches found
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/viewPreRegisteredPatientList.jsp
+88
-30
88 additions, 30 deletions
iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientList.jsp
with
88 additions
and
30 deletions
iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientList.jsp
+
88
−
30
View file @
45701e18
<%@taglib
uri=
"/WEB-INF/tags.tld"
prefix=
"itrust"
%>
<%@taglib
uri=
"/WEB-INF/tags.tld"
prefix=
"itrust"
%>
<%@page
errorPage=
"/auth/exceptionHandler.jsp"
%>
<%@page
errorPage=
"/auth/exceptionHandler.jsp"
%>
<%@page
import=
"java.util.ArrayList"
%>
<%@page
import=
"java.util.List"
%>
<%@page
import=
"java.util.List"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.PatientBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.beans.PatientVisitBean"
%>
<%@page
import=
"edu.ncsu.csc.itrust.action.ViewPreRegisteredPatientListAction"
%>
<%@include
file=
"/global.jsp"
%>
<%@include
file=
"/global.jsp"
%>
<%
<%
pageTitle
=
"iTrust - View Pre
r
egistered Patients"
;
pageTitle
=
"iTrust - View
All
Pre
-R
egistered Patients"
;
%>
%>
<%@include
file=
"/header.jsp"
%>
<%@include
file=
"/header.jsp"
%>
<br
/>
<%
<%
// Have to get the DAO
ViewPreRegisteredPatientListAction
action
=
new
ViewPreRegisteredPatientListAction
(
prodDAO
,
loggedInMID
.
longValue
());
/////////////////////// ViewPatientOfficeVisitHistoryAction(prodDAO, loggedInMID.longValue());
//List<PatientBean
>
PreRegisteredPatientList
=
action
.
getPatients
();
//////// action is in ViewPreRegisteredPatientListAction
//////////////// ???????????????? change <PatientVisitBean
>
patientVisits
to
PreRegisteredPatientList
List
<
PatientBean
>
PreRegisteredPatientList
=
action
.
getPreRegisteredPatients
();
loggingAction
.
logEvent
(
TransactionType
.
PATIENT_LIST_VIEW
,
loggedInMID
,
0
,
""
);
////////// ????????? TransactionType.PATIENT_LIST_VIEW
%>
%>
<script
src=
"/iTrust/DataTables/media/js/jquery.dataTables.min.js"
type=
"text/javascript"
></script>
<script
type=
"text/javascript"
>
jQuery
.
fn
.
dataTableExt
.
oSort
[
'
lname-asc
'
]
=
function
(
x
,
y
)
{
var
a
=
x
.
split
(
"
"
);
var
b
=
y
.
split
(
"
"
);
return
((
a
[
1
]
<
b
[
1
])
?
-
1
:
((
a
[
1
]
>
b
[
1
])
?
1
:
0
));
};
jQuery
.
fn
.
dataTableExt
.
oSort
[
'
lname-desc
'
]
=
function
(
x
,
y
)
{
var
a
=
x
.
split
(
"
"
);
var
b
=
y
.
split
(
"
"
);
return
((
a
[
1
]
<
b
[
1
])
?
1
:
((
a
[
1
]
>
b
[
1
])
?
-
1
:
0
));
};
</script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
()
{
$
(
"
#patientList
"
).
dataTable
(
{
"
aaColumns
"
:
[
[
2
,
'
dsc
'
]
],
"
aoColumns
"
:
[
{
"
sType
"
:
"
lname
"
},
null
,
null
],
"
bStateSave
"
:
true
,
"
sPaginationType
"
:
"
full_numbers
"
});
});
</script>
<style
type=
"text/css"
title=
"currentStyle"
>
@import
"/iTrust/DataTables/media/css/demo_table.css"
;
</style>
<div
align=
center
>
<br
/>
<table
id=
"patientList"
class=
"fTable"
>
<h2>
Pre-Registered Patients
</h2>
<thead>
<form
action=
"viewReport.jsp"
method=
"post"
name=
"myform"
>
<tr>
<table
class=
"display fTable"
id=
"patientList"
align=
"center"
>
<th
colspan=
"4"
style=
"text-align: center;"
>
All Preregistered Patients
</th>
</tr>
<thead>
<tr>
<th
align=
"center"
width=
"200"
><div
align=
"center"
>
Patient Name
</div></th>
</tr>
<tr
class=
""
>
<th>
Name
</th>
<th>
Address
</th>
<th>
Email
</th>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<%
<%
List
<
PreRegisteredBean
>
beans
=
patientDAO
.
getPreregisteredPatients
();
List
<
PatientBean
>
patientsList
=
new
ArrayList
<
PatientBean
>
();
///////////////////////////////////
for
(
PreregisteredBean
b
:
beans
)
{
int
index
=
0
;
Patient
p
=
b
.
getPatient
();
%>
for
(
PatientBean
bean
:
PreRegisteredPatientList
)
{
////////// ???????????????????? Change PatientVisitBean to PatientBean
<tr>
patientsList
.
add
(
bean
);
<td
align=
"center"
>
%>
<a
href=
"editPreregisteredPatient.jsp?pid=
<%=
StringEscapeUtils
.
escapeHtml
(
p
.
getMID
().
toString
())
%>
"
>
<tr>
<%=
StringEscapeUtils
.
escapeHtml
(
patient
.
getFullName
().
toString
())
%>
<td
>
</a>
<a
href=
"editPHR.jsp?patient=
<%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
index
))
%>
"
>
</td>
</tr>
<%
<%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
bean
.
getFullName
()))
%>
</a>
</td>
<td
><%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
bean
.
getStreetAddress1
()
+
" "
+
bean
.
getStreetAddress2
()
+
" "
+
bean
.
getStreetAddress3
()))
%></td>
<td
>
<%=
StringEscapeUtils
.
escapeHtml
(
""
+
(
bean
.
getEmail
()))
%>
</td>
</tr>
<%
index
++;
}
}
%>
<th
colspan=
"4"
></th>
session
.
setAttribute
(
"patients"
,
patientsList
);
//////////////////// ??????????????????????????????????????????
%>
</tbody>
</tbody>
</table>
</table>
</div>
</form>
<br
/>
<br
/>
<%@include
file=
"/footer.jsp"
%>
<%@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