EditPlace.jsp
资源名称:OA.rar [点击查看]
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:6k
源码类别:
OA系统
开发平台:
Java
- <%@ page contentType="text/html; charset=gb2312"%>
- <%@ page import="com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
- <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
- <%
- Request m_request = new Request(request);
- int intPlaceId = m_request.GetInt("ID");
- int iDepartmentID = m_request.GetInt("DepartmentID");
- if(intPlaceId<1)
- {
- %>
- <script language="JavaScript" type="text/JavaScript">
- alert("请选择正确的职务,修改失败!");
- history.back();
- </script>
- <%
- }
- else
- {
- Vector vt = PlaceManager.getRecordByDepartmentID(iDepartmentID);
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
- <title>职务管理-- GForce OA 2.0</title>
- <link href="../css/txt.jsp" rel="stylesheet" type="text/css">
- <script language="JavaScript" src="/js/changestyle.js"></script>
- <script language="JavaScript" type="text/javascript">
- function checkeditplace()
- {
- if(document.editplace.PlaceName.value=='')
- {
- alert("请输入职务名称!");
- document.editplace.PlaceName.focus();
- return false;
- }
- if(document.editplace.DepartmentID.value=='')
- {
- alert("请选择所属部门!");
- document.editplace.DepartmentID.focus();
- return false;
- }
- }
- </script>
- </head>
- <body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0" onload="javascript:selectDefaultValue(document.all.GoByDepartmentID,<%=iDepartmentID%>);selectDefaultValue(document.editplace.DepartmentID,<%=iDepartmentID%>);">
- <table width="100%" height="100%" border="0" align="center" cellspacing="0">
- <tr>
- <td align="center" valign="top"><p> </p>
- <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
- <tr align="right" valign="middle">
- <th colspan="7" nowrap align="right"><font color="#0A0A0A">当前职务所属部门:</font>
- <select name="GoByDepartmentID" id="GoByDepartmentID" onchange="javascript:self.location='PlaceManage.jsp?DepartmentID='+this.value;">
- <option value="">请选择所属部门</option>
- <script language="JavaScript" src="/js/AddDepartment.jsp"></script>
- </select>
- </th>
- </tr>
- <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
- <th width="6%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
- <th width="8%" nowrap><font color="#000000">序号</font></th>
- <th width="52%" nowrap><font color="#000000">职务名称</font></th>
- <th width="11%" nowrap><font color="#000000">返回</font></th>
- <th width="11%" nowrap><font color="#000000">修改</font></th>
- <th width="12%" nowrap><font color="#000000">删除</font></th>
- </tr>
- <%
- for(int i=0;i<vt.size();i++)
- {
- String strID = ((Vector)vt.get(i)).get(0).toString();
- if(!strID.equals((intPlaceId + "")))
- {
- if(i % 2 == 0)
- out.println("<tr id="Row"+ i+ "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
- else
- out.println("<tr id="Row"+ i+ "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
- out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
- out.println("<td align="right" valign="middle">" + (i+1) + "</td>");
- out.println("<td align="left" valign="middle" nowrap>" + ((Vector)vt.get(i)).get(1).toString() + "</td>");
- out.println("<td align="center" valign="middle" nowrap> </td>");
- out.println("<td align="center" valign="middle" nowrap><a href="EditPlace.jsp?ID=" + strID + "">修改</a></td>");
- out.println("<td align="center" valign="middle" nowrap><a href="DelPlace.jsp?ID=" + strID + "" onclick="return confirm('您确实要删除该职务吗?\n删除该职务之前必须删除属于该职务的所有员工,\n否则会出错,您是否继续?');">删除</a></td>");
- out.println("</tr>");
- }
- else
- {
- %>
- <form name="editplace" action="EditPlaceAction.jsp" method="post" onSubmit="javascript:return checkeditplace();">
- <tr bgcolor="<%=m_session.GetString("TitleColor")%>">
- <th align="right" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>"> </th>
- <th align="right" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>"><%=(i+1)+""%><input type="hidden" name="ID" value="<%=strID%>"></th>
- <th align="left" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>">
- <input name="PlaceName" type="text" maxlength="50" Value="<%=((Vector)vt.get(i)).get(1).toString()%>">
- <select name="DepartmentID">
- <option value="">请选择所属部门</option>
- <script language="JavaScript" src="/js/AddDepartment.jsp"></script>
- </select>
- </th>
- <th align="center" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>">
- <input type="button" value="返回" onclick="location='PlaceManage.jsp'"></th>
- <th align="center" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>"><input type="submit" value="修改"></th>
- <th align="center" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>"><a href="DelPlace.jsp?ID=<%=strID%>" onclick="return confirm('您确实要删除该职务吗?n删除该职务之前必须删除属于该职务的所有员工,n否则会出错,您是否继续?');">删除</a></th>
- </tr>
- </form>
- <%
- }
- }
- %>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
- <%
- }
- %>