📄 updateullagedept.jsp
字号:
<jsp:useBean id="operationInfoTra" class="src.wuyang.OperationInfoTra" scope="page" />
<jsp:useBean id="ullage" class="src.wuyang.Ullage" scope="page" />
<jsp:useBean id="global" class="src.com.MyGlobal" scope="session"/>
<% if (global.isLogined == false) {
%>
<jsp:forward page="../pub/DBErr.jsp" >
<jsp:param name="rtcode" value="-4" />
</jsp:forward>
<% }
%>
<html>
<head>
<title>易耗品申请单部门审核</title>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../pub/style.css">
<script language ="javascript" src='../pub/pub.js' type=text/javascript></script>
</head>
<body>
<%
operationInfoTra.query("receiptType=3 and state=0","");
%>
<table border=1>
<caption>请部门经理审核</caption>
<tr>
<td>
易耗品采购申请单编码
</td>
</tr>
<%
for(;operationInfoTra.next()>0;){
ullage.load(operationInfoTra.getReceiptId());
if(global.deptId.equals(ullage.getDeptId())){
%>
<tr>
<td>
<a href="UllageDeptUpdate.jsp?ullageId=<%=operationInfoTra.getReceiptId()%>"><%=operationInfoTra.getReceiptId()%></a>
</td>
</tr>
<% }
}
%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -