📄 nopassullage.jsp
字号:
<jsp:useBean id="operationInfoTra" class="src.wuyang.OperationInfoTra" scope="page" />
<jsp:useBean id="ullage" class="src.wuyang.Ullage" scope="page" />
<jsp:useBean id="dept" class="src.wuyang.Department" 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">
<script language ="javascript" src='../pub/pub.js' type=text/javascript></script>
<link rel="stylesheet" href="css.css">
</head>
<body bgcolor="#949B93" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="1" height="90%" cellspacing="0" cellpadding="0" align="center" bordercolorlight="#616860" bordercolordark="#CCCCCC" bgcolor="#4c7171" >
<tr>
<td valign="top" >
<br><br>
<%
operationInfoTra.query("receiptType=3 and (state=3 or state=2)","");
%>
<blockquote>
<table border=1 bordercolorlight="#000000" bordercolordark="#CCCCCC" cellpadding="0" cellspacing="0">
<caption class="textb"><b>请修改下列易耗品申请单</b></caption>
<tr bgcolor="#949b93" class="text">
<td class="text" width="138" height="16">
<div align="center"><b> 易耗品采购申请单编码 </b></div>
</td>
<td class="text" width="45" height="16">
<div align="center"><b> 申请人 </b></div>
</td>
<td class="text" width="59" height="16">
<div align="center"><b> 申请部门 </b></div>
</td>
<td class="text" width="33" height="16">
<div align="center"><b> 备注 </b></div>
</td>
</tr>
<%
for(;operationInfoTra.next()>0;){
ullage.load(operationInfoTra.getReceiptId());
dept.load(ullage.getDeptId());
%>
<tr>
<td class="textb" width="138" height="21"> <a href="UllageUpdateIndex.jsp?ullageId=<%=operationInfoTra.getReceiptId()%>"><%=operationInfoTra.getReceiptId()%></a>
</td>
<td class="textb" width="45" height="21"> <%=ullage.getProposer()%>
</td>
<td class="textb" width="59" height="21"> <%=dept.getDeptName()%>
</td>
<td class="textb" width="33" height="21"> <%=ullage.getComment()%>
</td>
</tr>
<%}%>
</table>
</blockquote>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -