training_statistic_query.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:4k
源码类别:
电子政务应用
开发平台:
Java
- <%@ page errorPage="/vnex/ErrorPage.jsp" %>
- <%@ taglib uri="/vnex_organization.tld" prefix="org" %>
- <%@ taglib uri="/vnex_hr.tld" prefix="hr" %>
- <%@ taglib uri="/vnex.tld" prefix="vnex" %>
- <%
- int deptId = 0;
- if( request.getParameter("department_id") != null )
- {
- deptId = Integer.parseInt ( request.getParameter("department_id") );
- }
- %>
- <HTML>
- <jsp:include page="/vnex/page/FORM_HEAD.jsp" />
- <BODY text=#000000 vLink=#000000 aLink=#000000 link=#000000 bgColor=#ffffff topMargin=20 leftmargin="0" marginwidth="0" marginheight="0">
- <script language="JavaScript" src="/vnex/menu/dockmenu_hr.js"></script>
- <script language="JavaScript" src="/vnex/menu/dockmenu.js"></script>
- <script language="JavaScript" src="/vnex/validate.js"></script>
- <script language=JavaScript>
- function statistic1(){
- statistic.action="/mainctrl/training/statistic?pageFlow=statistic&statistic";
- statistic.submit();
- }
- function changeIt(form)
- {
- form.action="/mainctrl/training/statisticQuery";
- form.submit();
- }
- </script>
- <DIV align=center>
- <form name="statistic" method=POST>
- <TABLE class=outter cellSpacing=0 cellPadding=0 width=600 border=0>
- <tbody>
- <jsp:include page="/vnex/page/TTOA_TABLE_TOP.jsp" />
- <TR>
- <TD colSpan=3 align="center">
- <br>
- <table width="600" border="1" cellspacing="1" bordercolor="#666666">
- <tr>
- <td>
- <table class=title cellspacing=1 cellpadding=2 border=0 width="600">
- <tr>
- <td colspan="2" bgcolor="#666666"><font class="strongw">
- <a href="/mainctrl/home/index"><font color="#FFFFFF">首页</font></a>>>
- <a href="/mainctrl/hr/main"><font color="#FFFFFF">人力资源</font></a>>>
- 员工培训统计
- </font></td>
- </tr>
- <tr bgcolor="#fafafa">
- <td width="15%">
- <strong> 部门:</strong>
- </td>
- <td>
- <select name="department_id" onchange="changeIt(this.form)">
- <option value="0">全部部门</option>
- <org:DivisionList><vnex:items select='<%= request.getParameter("department_id") %>'>
- <option value="<org:DivisionAttribute attribute="id"/>" <org:DivisionAttribute attribute="isSelected"/>
- > <org:DivisionAttribute attribute="levelStr"/>+<org:DivisionAttribute attribute="name"/>
- </option>
- </vnex:items></org:DivisionList>
- </select>
- </td>
- </tr>
- <tr bgcolor="#e0e0e0">
- <td width="15%">
- <strong> 员工:</strong>
- </td>
- <td>
- <select name="person_id" size="1">
- <option value="0">--请选择--</option>
- <hr:EmployeeList divisionId='<%=deptId %>'> <vnex:items>
- <option value="<hr:EmployeeAttribute attribute="id" />">
- <hr:EmployeeAttribute attribute="employee_name_SameLength" />
- </option>
- </vnex:items> </hr:EmployeeList>
- </select>
- </td>
- </tr>
- <tr bgcolor="#fafafa" height="30" align="center">
- <td colspan="2"><input type="button" value="查询" name="B3" onclick="return statistic1()" class="text"> <input type="button" value="返回" name="B3" onclick="location='/mainctrl/hr/main'" class="text"></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <jsp:include page="/vnex/page/TTOA_HELP.jsp" />
- </TD>
- </TR>
- <jsp:include page="/vnex/page/TTOA_TABLE_BOTTOM.jsp" />
- </TBODY>
- </TABLE>
- <BR>
- <jsp:include page="/vnex/page/TTOA_PRODUCER_LOGO.jsp" />
- </form></DIV>
- </BODY></HTML>