AS_INDEX.jsp 1.86 KB
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
<%@page contentType="text/html; charset=UTF-8"%>
<%@page import="org.apache.commons.lang.StringUtils" %>
<%@ page import="com.csc.library.entry.*"  %>
<%@ page import="com.csc.library.system.*" %>
<%@ page import="com.csc.library.utilities.*" %>
<%@ page import="com.csc.library.database.*" %>
<%@ page import="com.csc.library.session.*" %>
<%@ page import="com.csc.library.menu.Menu" %>
<%@ page import="com.csc.library.menu.MenuList"%>
<%@ page import="com.csc.library.menu.TreeMenu" %>
<%@ page import="com.csc.library.menu.*" %>
<%@ include file="../CHECKPROFILE.jsp" %>

<jsp:useBean id="AS_Index" class="com.csc.library.system.Task" scope="page"/>
<%

	final Menu menu = new TreeMenu(MenuList.APPRAISAL.getMenu(), uprofile,MenuList.APPRAISAL.getAppname());
	menu.setCssStyle("filetree");
    String strMenu = menu.getMenu();

	AS_Index.setChannel(request,response);
	AS_Index.checkProfile();
	UProfile u=AS_Index.getUProfile();
%>
<!DOCTYPE html>
<html ng-app="myHR">
	<head>
		<title>myHR :> Appraisal Module</title>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<script type="text/javascript" src="../JS/jquery-2.1.3.min.js"></script>
	</head>
	<body>
			<div class="admin-header">
				<jsp:include page="../ADMIN_HEAD_MENU.jsp" flush="true" />
			</div>
			<div class="admin-left-menu" id="">
				<div class="head-menu">Appraisal</div>
				<%=strMenu%> 
			</div>
			
			<iframe src="about:blank" name="mainFrame" id="mainFrame"></iframe>
			<jsp:include page="../MODULE_SELECT.jsp" flush="true" />

			<form name="cscforms" id="cscforms" method="post">
				<input type="hidden" name="modulename" id="modulename" value="">
				<input type="hidden" name="modulepath" id="modulepath" value="">
				<input type="hidden" name="linkaction" id="linkaction" value="">
				<input type="hidden" name="__language" value="<%=uprofile.get("lang")%>">
			</form> 

	</body>
</html>