📄 querypurch.jsp
字号:
<%@ taglib prefix="tag" uri="/jsp/tld/WuYangTag.tld" %>
<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="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="css.css">
</head>
<script language="JavaScript">
<!--
function AddCustomer() {
open("CustomerId.jsp","CustomerList","scrollbars=yes,width=250,height=200")
}
// -->
</script>
<%
String state[] = {"要求部门审核","部门审核通过","部门审核不通过","高层审核不通过","高层审核通过"};
%>
<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" height="609" >
<br><br>
<form method="post" name="insert" action="Purchquery.jsp">
<blockquote>
<table width="298" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="textb"><b>采购单编号:</b></td>
<td>
<input type="text" name="purchId">
</td>
</tr>
<tr>
<td class="textb"><b>合同编号:</b></td>
<td><font size="3">
<input type="text" name="contractId"/>
</font></td>
</tr>
<tr>
<td class="textb"><b>客户编码:</b></td>
<td><font size="3">
<input type="text" name="customerId" /><input type="button" value=">>" onclick="AddCustomer()"/>
</font></td>
</tr>
<tr>
<td class="textb"><b>申请人:</b></td>
<td>
<input type="text" name="proposer" / >
</td>
</tr>
<tr>
<td class="textb"><b>采购单状态:</b></td>
<td><font size="3">
<select name="purchState">
<option value=""> </option>
<% for(int j=0;j<5;j++) { %>
<option value="<%=j%>"><%=state[j]%></option>
<%}%>
</select>
</font></td>
</tr>
<tr>
<td class="textb"><b>部门编码:</b></td>
<td>
<select name="deptId">
<tag:dept showType="select"/>
</select>
</td>
</tr>
<tr>
<td colspan="2">
<div align="center"> <br>
<input type="submit" name="qurey" value="查询" />
<input type="reset" value="重置" name="reset" />
</div>
</td>
</tr>
</table>
<br>
</blockquote>
</form>
</td>
</tr></table>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -