?? pre-inputsearch.jsp
字號:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ page import="teleReport.domain.PreInfo" %>
<%@ page import ="java.text.SimpleDateFormat" %>
<%@ page import="java.util.Calendar" %>
<%@ 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" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<jsp:useBean id = "searchtrace" class = "teleReport.presentation.PreBean" scope = "session" />
<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/pre.js"></script>
<%
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>");
}
%>
</head>
<body><div style="position:absolute;margin:15px,0px,0px,0px;width:1085px;">
<html:form action="/jsp/preShowResultInputer" onsubmit = "return preSearchCheck()">
<table border="0">預存轉收入查詢:
<tr>
<td width="400" class="item">
<div align="right">
銷售日期
</div></td>
<td scope="row">
<div align="left">
<INPUT id=Begin_Time1 onclick="fPopCalendar(Begin_Time1,Begin_Time1,'Down');return false" type = "text" readonly="readonly" name="sale_time"
value="<%=new SimpleDateFormat("yyyy-MM-dd").format(Calendar.getInstance().getTime())%>"/>
</div>
</td>
</tr>
<tr>
<td class="item" ><div align="right">地市:</div> </td>
<td class="item_value">
<div align="left">
<html:select property="cityId" >
<html:option value="-1">----不區分----</html:option>
<html:optionsCollection property="cityList" label="cityName" value="cityId"/>
</html:select>
</div>
</td>
</tr>
<tr>
<td class="item"><div align="right">產品:</div></td>
<td class="item_value">
<div align="left">
<html:select property="prodId" >
<html:option value="-1">----不區分----</html:option>
<html:optionsCollection property="prodList" label="prodName" value="prodId"/>
</html:select>
</div>
</td>
</tr>
<tr>
<td class="item"><div align="right">銷帳費用類型:</div></td>
<td class="item_value">
<div align="left">
<html:select property="chargeTypeId" >
<html:optionsCollection property="chargeTypeList" label="typeofcharge" value="chargeTypeId"/>
</html:select> </div>
</td>
</tr>
<tr>
<td class = "item" scope="row"><div align="right">稽核狀態</div></td>
<td class = "item_value">
<div align="left">
<html:select property="state">
<html:option value = "0">未通過</html:option>
<html:option value = "1">已通過</html:option>
<html:option value = "2">未稽核</html:option>
</html:select>
</div>
</td>
</tr><td> </td><td><p align="left">
<input type="submit" value="查詢" class="button" />
<input type="reset" value="取消" class="button"> </p></td>
<tr>
</tr>
</table>
</html:form></div>
</body>
</html:html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -