- Current Status<%- status %>
<% if (appointmentRequestDetailCode.length > 0) {%>
- Detail Code<%- appointmentRequestDetailCode[0].detailCode.providerMessage %>
<% } %>
<% if(status == "Booked" && typeof bookedApptDateTime != "undefined" && bookedApptDateTime != null && bookedApptDateTime != ""){ %>
- Booked Appointment Date<%- bookedApptDateTime %>
<% } %>
<% if(appointmentDate != null && appointmentDate != ""){ %>
- Requested Appointment Date<%- appointmentDate %> <%- appointmentTime %>
<% } %>
- Full Name<%- patient.firstName %> <%- patient.lastName %>
- Date of Birth<%- patient.dateOfBirth %>
- SSN<%- patient.ssn %>
- Last Activity<%- formatDateToDays(lastUpdatedDate) + ' ' + formatTime(lastUpdatedDate) %>
- Request Submitted<%- formatDateToDays(createdDate) + ' ' + formatTime(createdDate) %>
Request Details
- Facility<%- facility.name %>
- Type of Care<%- appointmentType %>
- Provider<%- providerName %><% if (providerOption !== undefined && providerOption.length) { %>
<%- providerOption %><% } %>
- Type of Visit<%- visitType %>
- Purpose of Visit<%- purposeOfVisit %>
<%
if (purposeOfVisit == 'Other') {
%>
- Other Purpose of Visit<%- otherPurposeOfVisit %>
<%
}
%>
Request Date/Time
<% if (requestedPhoneCall) { %>
- Patient has requested a phone call: <%- phoneNumber %>
<% }%>
- Preferred<%- optionDate1 %><% if (optionTime2 !== "No Time Selected") { %> <%- optionTime2 %><% } %>
- Second Choice<%- optionDate2 %><% if (optionTime2 !== "No Time Selected") { %> <%- optionTime2 %><% } %>
- Third Choice<%- optionDate3 %><% if (optionTime3 !== "No Time Selected") { %> <%- optionTime3 %><% } %>
Patient Contact
- Phone Number<%- phoneNumber %>
- Best Time(s) To Call<% _.each(bestTimetoCall, function(i) { %><%- i %>
<% }); %>