📄 approvealter.jsp
字号:
<jsp:include page="/include/global.jsp"/>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ page import="com.cmmi2pms.sa.user.Employee,com.cmmi2pms.common.Constants" %>
<%
Employee user = new Employee();
if (request.getSession().getAttribute(Constants.USER_KEY)!=null)
user = (Employee) request.getSession().getAttribute(Constants.USER_KEY);
%>
<%@ page contentType="text/html; charset=GBK" %>
<html:html>
<head>
<title>
CMMI2PMSv1.00
</title>
<base target="_self">
<meta http-equiv="Pragma" content="no-cache">
<link rel="stylesheet" type="text/css" href="../../common/olstyle.css">
<script language="JavaScript" src="../../common/meizzDate.js"></script>
<script type="text/javascript" src="../../common/CommonFunc.js"></script>
<script type="text/javascript" src="../../common/dialog.js"></script>
<script language="Javascript1.1" src="../../staticJavascript.jsp"></script>
<script>
function checkForm(){
var frm = document.forms[0];
var errors = "";
if(errors!=""){
alert(errors);
return false;
}
return true;
}
function selectCmChangeType(obj) {
ret = showModalDialog("cmctypeSelectIndex.jsp",null,'status:no;scroll:yes;help:no;dialogWidth:300px;dialogHeight:300px');
if (ret!=null) obj.value=ret;
}
</script>
</head>
<body>
<html:form action="/pages/CM/configalter/ConfigAlter" onsubmit="return checkForm();">
<html:hidden property="alterapplyid" />
<html:hidden property="act" value="approveAlter"/>
<table width="90%" align="center">
<tr>
<td align="center" valign="top">
</td>
</tr>
<tr>
<td>
<table width="100%" height="25" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="20" bgcolor="#669999"><div align="center"><font color="#FFFF99">变更审批</font></div></td>
</tr>
</table>
<table class="dialog" width="100%">
<tr class="inputRow">
<td align="right" width="100"><bean:message key="global.red_asterisk"/> 审 批 者 </td>
<td><html:text name="ConfigAlterForm" property="approver" value= "<%=user.getName()%>" disabled="true"/></td>
</tr>
<tr class="inputRow">
<td align="right" width="100"><bean:message key="global.red_asterisk"/> 审批结论 </td>
<td>
<html:select property="status" style="width:160" size="1">
<html:option value="">批准申请</html:option>
<html:option value="">不批准申请</html:option>
</html:select>
</td>
</tr>
<tr class="inputRow">
<td align="right" width="100"><bean:message key="global.red_asterisk"/> 审批分析 </td>
<td>
<html:textarea property="approvereport" style="width:360" rows="8"/>
</td>
</tr>
<tr class="inputRow">
<td align="right" width="100"><bean:message key="global.red_asterisk"/> 指定验证者 </td>
<td> <html:select property="validator" style="width:160" size="1">
<html:option value="">--------请选择---------</html:option>
<jsp:include page="/getcategories?type=projectMember"/>
<html:options collection="employees" property="userID" labelProperty="name"/>
</html:select>
</td>
</tr>
</table>
<hr>
<jsp:include page="../../include/savebuttons.jsp"/>
</td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -