?? queryplansell.jsp
字號:
<%@ taglib prefix="task" uri="/jsp/tld/WuYangTag.tld" %>
<jsp:useBean id="planSell" class="src.wuyang.PlanSell" scope="page"/>
<jsp:useBean id="department" class="src.wuyang.Department" scope="page"/>
<jsp:useBean id="production" class="src.wuyang.Production" 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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="css.css" type="text/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>
<form method="post" action="PlanSellQuery.jsp" > <blockquote>
<table border="0">
<tr>
<td class="textb"> <b>
計劃銷售編號 : </b></td>
<td class="textb">
<input type="text" name="planSellId"/>
</td>
</tr>
<tr>
<td class="textb"> <b>
<input type="hidden" name="mode" value="insert"/>
部門 : </b></td>
<td>
<select name="deptId">
<task:dept showType="select"/>
</select>
</td>
</tr>
<tr>
<td class="textb"><b>產品 : </b></td>
<td>
<%production.query("","");%>
<select name="productId">
<option></option>
<%while(production.next()>0) {%>
<option value="<%=production.getProductId()%>"><%=production.getProductName()%></option>
<%}%>
</select>
</td>
</tr>
<tr>
<td class="textb"><b>銷售開始日期從 :</b></td>
<td class="textb">
<input type="text" name="sellBegTimeFromn" size="4"/>
<span class="textb">年</span>
<input type="text" name="sellBegTimeFromy" size="2"/>
<span class="textb">月 </span>
<input type="text" name="sellBegTimeFromr" size="2"/>
<span class="textb">日</span>
- 至:
<input type="text" name="sellBegTimeTon" size="4"/>
<span class="textb">年</span>
<input type="text" name="sellBegTimeToy" size="2"/>
<span class="textb">月 </span>
<input type="text" name="sellBegTimeTor" size="2"/>
<span class="textb">日</span>
</td>
</tr>
<tr>
<td class="textb"><b>銷售截至日期 : </b></td>
<td class="textb">
<input type="text" name="sellEndTimeFromn" size="4"/>
<span class="textb">年</span>
<input type="text" name="sellEndTimeFromy" size="2"/>
<span class="textb">月 </span>
<input type="text" name="sellEndTimeFromr" size="2"/>
<span class="textb">日</span>
- 至:
<input type="text" name="sellEndTimeTon" size="4"/>
<span class="textb">年</span>
<input type="text" name="sellEndTimeToy" size="2"/>
<span class="textb">月 </span>
<input type="text" name="sellEndTimeTor" size="2"/>
<span class="textb">日</span>
</td>
</tr>
<tr>
<td colspan="2">
<div align="center"><b> <br>
<input type="submit" name="query" value="查詢" />
</b>
<input type="reset" value="重置" name="reset" />
</div>
</td>
</tr>
</table>
<p> </p> </blockquote>
</form>
</td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -