?? cardsaleupdate.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"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />
<script type="text/javascript" src="../js/my.js"></script>
<link rel="stylesheet" type="text/css" href="../common/css/common.css" />
<script type="text/javascript" src="../common/js/order.js"></script>
<script type="text/javascript" src="../common/js/cardSale.js"></script>
<title>卡銷售信息更新</title>
<%
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>
<html:form action="/jsp/updateCard" onsubmit = "return cardSaleInput()">
<table width="200" border="1">
<caption>
卡銷售收入更新
</caption>
<tbody>
<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="saleDate" readonly/>
<br>
</td>
</tr>
<tr>
<td class="item">
城市:
</td>
<td class="item_value">
<html:select property="cityId">
<html:option value="-1">不區(qū)分</html:option>
<html:optionsCollection property="cityList" label="cityName"
value="cityId" />
</html:select>
</td>
</tr>
<tr>
<td class="item">
產(chǎn)品名稱:
</td>
<td class="item_value">
<html:select property="proId">
<html:option value="-1">不區(qū)分</html:option>
<html:optionsCollection property="prodList" label="prodName"
value="prodId" />
</html:select>
</td>
</tr>
<tr>
<td class="item">
單張面值金額:
</td>
<td class="item_value">
<html:text size="6" property="singleV" maxlength="15"></html:text>
</td>
</tr>
<tr>
<td class="item">
卡銷售數(shù)量:
</td>
<td class="item_value">
<html:text size="8" property="proNumber" maxlength="15"></html:text>
</td>
</tr>
<tr>
<td class="item">
卡總面值金額:
</td>
<td class="item_value">
<input type="text" id="proNumV" readonly onFocus="totalValue()">
</td>
</tr>
<tr>
<td class="item">
折扣后金額:
</td>
<td class="item_value">
<html:text property="discordV"></html:text>
</td>
</tr>
<tr>
<td class="item">
</td>
<td class="item_value">
<html:submit value="錄入" ></html:submit>
<html:reset value="重設(shè)"></html:reset>
</td>
</tr>
</tbody>
</table>
</html:form>
</body>
</html:html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -