Skip to content
Snippets Groups Projects
Commit 45701e18 authored by xuechen5's avatar xuechen5
Browse files

Get all Pre-Registered Patient to HCP's screen for approval.

parent 12fdc4c8
No related branches found
No related tags found
1 merge request!22Merge UC92 into Master
<%@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 Preregistered Patients"; pageTitle = "iTrust - View All Pre-Registered 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" %>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment