PayRollResult.jsp
Called from payRollAxis. Displays the results of the payroll process <>
PayRollResult.............
<%@ page import= "java.util.*" %> <%@ page import= "com.EmployeeObject4"%> <%@ page import= "com.*" %> <%@ page import= "java.sql.*" %> <%@ page import= "java.text.*" %> <% ArrayList arrayList = (ArrayList)session.getAttribute("hubArrayList"); %>
Payroll Results6666
NewEmployer
NICcont
Gross Pay
Net Pay
NewTax
Deducted
Employee
NIC
Employer
NIC <% EmployeeObject4 empl; for(int d = 0;d < arrayList.size();d++) { empl = (EmployeeObject4)arrayList.get(d); %>
<%=empl.getNIC()%>
<%=empl.getGrossPay()%>
<%=empl.getNetPay()%>
<%=empl.getNewTaxDeducted()%>
<%=empl.getNewEmployeeNICcont()%>
<%=empl.getNewEmployerNICcont()%>
<% } %>
<>