?? ratifyimportcontract.jsp
字號:
<jsp:useBean id="operation" class="src.wuyang.OperationInfoTra" scope="session"/>
<jsp:useBean id="employee" class="src.wuyang.Employee" scope="page"/>
<jsp:useBean id="depart" 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>
<link rel="stylesheet" href="css.css">
</head>
<%
operation.setGlobal(global);
String whereClause="receiptType="+6+" and state="+1;
operation.query(whereClause,"");
%>
<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>
<form method="post">
<blockquote>
<table border="1" width="211" bordercolorlight="#000000" bordercolordark="#CCCCCC" cellpadding="0" cellspacing="0">
<tr class="text">
<td width="59" bgcolor="#949b93" height="17">
<div align="center"><b>合同編號 </b></div>
</td>
<td width="44" bgcolor="#949b93" height="17">
<div align="center"><b>申請人 </b></div>
</td>
<td width="86" bgcolor="#949b93" height="17">
<div align="center"><b>部門 </b></div>
</td>
</tr>
<%
while (operation.next() > 0)
{
employee.load(operation.getProposer());
depart.load(operation.getDeptId());
%>
<tr class="textb">
<td height="20" width="59"><a href="ImportContractRatifyD.jsp?contractId=<%=operation.getReceiptId()%>"><%=operation.getReceiptId()%></a></td>
<td height="20" width="44"><%=employee.getEmpName()%></td>
<td height="20" width="86"><%=depart.getDeptName()%></td>
</tr>
<%
}
%>
<p>
</table>
</blockquote>
</form>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -