<%@ page contentType="text/html; charset=UTF-8" language="java" %> <%@ page import="com.csc.library.entry.HelpEntry,com.csc.library.system.*,com.csc.library.utilities.*"%> <%@ page import="com.csc.library.entry.*,com.csc.library.database.*,com.csc.library.session.*" %> <%@ include file="../CHECKPROFILE.jsp" %> <% request.setCharacterEncoding("UTF-8"); %> <jsp:useBean id="TREMP011" class="com.csc.library.system.Task" scope="page" /> <jsp:setProperty name="TREMP011" property="appname" value="empview" /> <% TREMP011.setChannel(request, response); HelpEntry screen = (HelpEntry)TREMP011.process("HelpEntry", "TREMP011"); String trainid = request.getParameter("__fixCon"); screen.getInquiry().setFilter(trainid); screen.process(); screen.referLangOn(); %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" ng-app="myHR"> <head> <title>Employee View</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" href="<%=request.getContextPath()%>/CSS/font-awesome.css"> <link rel="stylesheet" type="text/css" href="../CSS/Bootstrap/css/bootstrap.css" /> <link rel="stylesheet" type="text/css" href="../CSS/EMPVIEW_LAYOUT.min.css" /> <script type="text/javascript" src="../JS/jquery-2.1.3.min.js"></script> <script type="text/javascript" src="../JS/UTILITIES.js"></script> <script type="text/javascript" src="../JS/EVENTS.js"></script> <script type="text/javascript" src="../JS/SCREEN.js"></script> <script type="text/javascript" src="../JS/angular-1.3.15/angular.js"></script> <script type="text/javascript" src="../JS/ANGULAR/SCREEN_ANGULAR.js"></script> <script> setLang("<%=screen.getUProfile().get("lang")%>"); var swap = new swaplang(); var titlename = swap.swap2String("SW000892"); setPageTitle(titlename); </script> </head> <body> <div class="bg-com"></div> <div class="container csc-content"> <div class="csc-block-white"> <form name="cscform" class="form-horizontal" method="post" action="TREMP011.jsp"> <%=screen.InitialVariable()%> <input type="hidden"name="__screen" value="TREMP011"> <input type="hidden" name="__fixCon" value=""> <input type="hidden" name="__help" value=""> <input type="hidden" name="__keyList" value=""> <input type="hidden" name="__cmd" value=""> <input type="hidden" name="__calendar"> <script language="javascript">//getInputFormatDate();</script> <input type="hidden" name="__language" value ="<%=screen.getUProfile().get("lang")%>"> <input type="hidden" name="__companyid" value="<%=screen.getUProfile().get("companyid")%>"> <input type="hidden" name="__backpage" value = "<%=request.getParameter("__backpage")%>"> <div class="container "> <div class="center"> <h4 swlang code="SW000892">Time Schedule</h4> </div> <table class="table table-head table-hover table-bordered table-title-left table-content-center"> <thead> <tr> <th swlang code="SW000002">Date</th> <th swlang code="SW000296">Start Time</th> <th swlang code="SW000297">End Time</th> <th swlang code="SW001969">Relax Hour</th> <th swlang code="SW001909">Total Time</th> </tr> </thead> <tbody> <% while(screen.nextRec()){ %> <tr> <td><%=screen.getString("START_DATE")%></td> <td><%=screen.getString("START_TIME")%></td> <td><%=screen.getString("END_TIME")%></td> <td><%=screen.getString("TIMEBREAK")%></td> <td><%=screen.getString("T_HOUR")%></td> </tr> <% } %> </tbody> </table> <div class="center"> <a href="javascript:close();" swlang code="SW012104" class="btn btn-primary">Close</a> </div> </div> </form> </div> </div> </body> </html>