?? purchullage.jsp
字號:
<jsp:useBean id="operationInfoTra" class="src.wuyang.OperationInfoTra" scope="page" />
<jsp:useBean id="ullage" class="src.wuyang.Ullage" scope="page" />
<jsp:useBean id="employee" class="src.wuyang.Employee" 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" >
<%
operationInfoTra.query("receiptType=3 and state=4","");
%>
<br><br>
<blockquote>
<table border=1 width="236" bordercolorlight="#000000" bordercolordark="#CCCCCC" cellpadding="0" cellspacing="0">
<caption class="textb"><b>請采購下列易耗品</b></caption>
<tr class="text" bgcolor="#949b93">
<td>
<div align="center"><b> 易耗品采購申請單編碼 </b></div>
</td>
<td>
<div align="center"><b> 申請人 </b></div>
</td>
<td>
<div align="center"><b> 備注 </b></div>
</td>
</tr>
<%
for(;operationInfoTra.next()>0;){
ullage.load(operationInfoTra.getReceiptId());
employee.load(ullage.getAccountId());
%>
<tr class="textb">
<td height="23"> <a href="UllagePrint.jsp?ullageId=<%=operationInfoTra.getReceiptId()%>"><%=operationInfoTra.getReceiptId()%></a>
</td>
<td height="23"> <%=ullage.getProposer()%> </td>
<td height="23"> <%=ullage.getComment()%> </td>
</tr>
<%}%>
</table>
</blockquote>
</td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -