Commit 18d86de2 authored by bpandey's avatar bpandey

change the column names for this report


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93403 ce508802-f39f-4f6c-b175-0d175dae99d5
parent cc37a444
<%@ page contentType="text/html"%>
<%@ page
import="javax.xml.parsers.DocumentBuilderFactory,javax.xml.parsers.DocumentBuilder,org.w3c.dom.*"%>
<%@ page import="javax.xml.parsers.DocumentBuilderFactory,javax.xml.parsers.DocumentBuilder,org.w3c.dom.*"%>
<%@page import="ibase.dashboard.sfa.ejb.*"%>
<!--<%@page import="ibase.webitm.reports.utility.ResourceConstants"%>
-->
<%@page import="ibase.webitm.reports.utility.ResourceConstants"%>
<%@page import="ibase.utility.CommonConstants"%>
<%@ page import="javax.naming.InitialContext"%>
<%@page import="javax.naming.Context"%>
......@@ -20,7 +18,7 @@
NodeList childNodeList = null;
Node currDetail = null;
String childNodeName = "";
String salePersnName = "",doctorsName = "", notMetSince = "", visitMissed = "",rptTitle;%>
String salePersnName = "",doctorsName = "", notMetSince = "",pendingVisits="", visitMissed = "",rptTitle;%>
<%
response.setHeader("Expires", "Sat, 6 May 1995 12:00:00 GMT");
response.setHeader("Cache-Control", "no-store, no-cache,must-revalidate");
......@@ -91,12 +89,7 @@
System.out.println("Return xmlString====" + xmlString);
}
%>
<%
......@@ -110,9 +103,10 @@
</table>
<table class="reportDetail" rules="all" FRAME=BOX>
<tr class="tblHeader">
<td>Doctors Name</td>
<td>Doctor Name</td>
<td>Not Met Since</td>
<td>No.Of Visit Missed</td>
<td>No.of Visits Missed</td>
<td>No.of Visits Pending</td>
</tr>
<tr>
<td colspan="3"><b>Sales Person:</b><%=dashboardPortal.getSalePersn()%></td>
......@@ -144,12 +138,17 @@
{
visitMissed = genericUtility.getColumnValueFromNode("visits_missed", parentNode);
}
if (childNodeName.trim().equals("pending_visits"))
{
pendingVisits = genericUtility.getColumnValueFromNode("pending_visits", parentNode);
}
}
%>
<tr>
<td width="180px"><%=doctorsName%></td>
<td align="right"><%=notMetSince%></td>
<td align="center"><%=visitMissed%></td>
<td align="center"><%=pendingVisits%></td>
</tr>
<%
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment