⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ordersearchinputer.jsp

📁 本套系统采用了业界当前最为流行的beanAction组件
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ page import ="java.text.SimpleDateFormat" %>
<%@ page import="java.util.Calendar" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html:html lang="true">
  <head>
    <html:base />
    
    <title>录入者查询通知单信息</title>
	 <link rel="stylesheet" type="text/css" href="../common/css/common.css" /> 
    <script type="text/javascript" src="../common/js/order.js"></script>    
  </head>
   <%       
          response.setHeader("Pragma","no-cache");       
          response.setHeader("Cache-Control","no-cache");       
          response.setDateHeader("Expires",0);       
 %>  
    <%
	String type =(String)session.getAttribute("userClass");
	if (!type.equals("1")) {
		session.setAttribute("notLogin", true);	
		out.print("<script language=javascript>window.location.href='/TeleReport/jsp/login.jsp';</script>");		
	}
                                                       
  %>
  
  <body>
   <div style="position:absolute;margin:15px,0px,0px,0px;width:1085px;">
    <html:form action="/jsp/showResultInputer" onsubmit = "return orderSearchCheck()">

      <table>
        <tr>
         <td class="item">录入日期:</td>
 		 <td class="item_value">  		 		
 		 <INPUT id=Begin_Time1 onclick="fPopCalendar(Begin_Time1,Begin_Time1,'Down');return false" type = "text" name="order_date"
 		 		 value="<%=new SimpleDateFormat("yyyy-MM-dd").format(Calendar.getInstance().getTime())%>"/>
 		 </td>
        </tr>
       	<tr>
 		<td class="item">地市:</td>
 		 <td class="item_value">
 		
 		  <html:select property="cityId" value="-1"> 	
 		  	<html:option value="-1">----不区分----</html:option>	
			<html:optionsCollection property="cityList" label="cityName" value="cityId"/>		  		
 		 </html:select>
 		 
 	 </td>
 	 </tr>
 	 
 		 <tr>
 		<td class="item">产品:</td>
 		<td class="item_value">
 		  <html:select property="prodId" value="-1"> 	
 		    	<html:option  value="-1">----不区分----</html:option>		
			<html:optionsCollection property="prodList" label="prodName" value="prodId"/>
		  </html:select>
 	 	</td>
  	</tr>
  	
  	<tr>
 		<td class="item">
 		通知单类型:
 		</td>
 		 <td class="item_value">
		 <html:select property="orderTypeId" > 		
			<html:optionsCollection property="orderTypeList" label="orderTypeName" value="orderTypeId"/>
		 </html:select>
 		</td>
  	</tr>
  	  	
  	<tr>
  		<td class = "item">稽核状态</td>
  		<td class = "item_value">
  		<html:select property="state">
  			<html:option value = "0">未通过</html:option>
  			<html:option value = "1">已通过</html:option>
  			<html:option value = "2">未稽核</html:option>
  		</html:select>
  		</td>
  	</tr>
  	  	    	
 	 <tr>
 	 <td></td>
 	<td>
 	<input type="submit" value="查询" class="button" />
	<input type="reset"  value="取消" class="button">
	</td>
	</tr>
	
	</table>	
	
   </html:form>
   </div>
   </body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -