<%@page import="com.csc.library.entry.*, com.csc.library.databean.*, com.csc.library.session.*,com.csc.library.utilities.*,com.csc.library.system.*"%>
<jsp:useBean id="CKLC" class="com.csc.library.system.Task" scope="page" />
<%
	CKLC.setChannel(request,response);
	EmvHelpEntry screen = (EmvHelpEntry)CKLC.process("EmvHelpEntry","MEMPLOYEEHELP");
	screen.process();
%>
<style>
	.table{
		table-layout: inherit !important;
	}
	.green-link{
		color: #4CAF50 !important;
	}
	.blue-link{
		color: #1a1aff !important;
	}
</style>
<section ng-controller="CKLCList">
	<div class="container container-98 csc-content">
		<table class="table table-bordered">
			<thead>
				<tr>
					<th class="bold-center bluehead" swlang code='SW001393'>No.</th>
					<th class="bold-center bluehead" swlang code='SW000019'>Status</th>
					<th class="bold-center bluehead" swlang code='SW000602'>Employeeid</th>
					<th class="bold-center bluehead" swlang code='SW001984'>Fullname</th>
					<th class="bold-center bluehead" swlang code='SW000780'>Job Title</th>
					<th class="bold-center bluehead"><%=screen.getLabel("bu2")%></th>
					<th class="bold-center bluehead" swlang code='SW000230'>Service Year</th>
				</tr>
			</thead>
			<tbody>
				<tr ng-repeat="rowemp in employeedata">
					<td class="center"><a ui-sref="cklc({employeeid: rowemp.employeeid})"> {{ $index+1 }} </a></td>
					<td class="center">
						<a ui-sref="cklc({employeeid: rowemp.employeeid})">
							{{ rowemp.apsstatus }}
						</a>
					</td>
					<td class="center"><a ui-sref="cklc({employeeid: rowemp.employeeid})">  {{ rowemp.employeeid }} </a></td>
					<td class="center"><a ui-sref="cklc({employeeid: rowemp.employeeid})">  {{ rowemp.fullname }} </a></td>
					<td class="center"><a ui-sref="cklc({employeeid: rowemp.employeeid})">  {{ rowemp.jobname }} </a></td>
					<td class="center"><a ui-sref="cklc({employeeid: rowemp.employeeid})">  {{ rowemp.bu2 }} </a></td>
					<td class="center"><a ui-sref="cklc({employeeid: rowemp.employeeid})">  {{ rowemp.empworkages }} </a></td>
				</tr>

			</tbody>

		</table>
	</div>
</section>