📄 insertsalecountlist.jsp
字号:
<jsp:useBean id="global" class="src.com.MyGlobal" scope="session"/>
<jsp:useBean id="countList" class="src.wuyang.CountList" scope="page"/>
<jsp:useBean id="product" class="src.wuyang.Production" scope="page"/>
<jsp:setProperty name="countList" property="*" />
<% 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="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language ="javascript" src='../pub/pub.js' type=text/javascript></script>
<link rel="stylesheet" href="css.css" type="text/css">
</head>
<script language="JavaScript">
function VerifyInput(e)
{
if(noFloat(e.quantity.value))
{
alert("请输入正确的数量");
e.quantity.focus();
return false;
}
}
</script>
<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> <blockquote>
<b><span class="textb"><br>
<%! int rtcode;%>
<%
String curMarkId = request.getParameter("curMarkId");
String slipId = request.getParameter("slipId");
String productId = request.getParameter("productId");
countList.setGlobal(global);
product.load(productId);
if(request.getParameter("delete")!=null){
rtcode = countList.delete();
}
if(request.getParameter("update")!=null){
rtcode = countList.update();
}
if (request.getParameter("insert")!=null){
rtcode = countList.insert();
}
if(rtcode < 0) {
%>
<jsp:forward page="../pub/DBErr.jsp" >
<jsp:param name="rtcode" value="<%= rtcode %>" />
</jsp:forward>
<%
}
%>
<br>
<b><span class="textb">开票申请单编号:<%=slipId%> <br>
产品名称:<%=product.getProductName()%> <br>
产品规格:<%=product.getProductDesc()%> <br>
应发数量:<%=request.getParameter("qty")%><br>
单位:<%=product.getUnit()%> </span></b></span></b>
<table border="1" bordercolorlight="#000000" bordercolordark="#CCCCCC" cellpadding="0" cellspacing="0"> <tr>
<td bgcolor="#949b93" class="text" width="46">
<div align="center"><b> 唛单号 </b></div>
</td>
<td bgcolor="#949b93" class="text" width="154">
<div align="center"><b> 唛头 </b></div>
</td>
<td bgcolor="#949b93" class="text" width="150">
<div align="center"><b> 数量 </b></div>
</td>
<td bgcolor="#949b93" class="text" width="50">
<div align="center"><b> </b></div>
</td>
<td bgcolor="#949b93" class="text" width="46">
<div align="center"><b> </b></div>
</td>
</tr>
<%
countList.query("markId="+curMarkId,"");
int i=0;
float qty=0;
for (;countList.next()>0;) {
%>
<form method="post">
<tr>
<input type="hidden" name="markNo" value="<%=countList.getMarkNo()%>">
<td class="textb" width="46"><%=countList.getMarkId()%></td>
<td class="textb" width="154">
<input type="text" name="mark" value="<%=countList.getMark()%>">
</td>
<td class="textb" width="150">
<input type="text" name="quantity" value="<%=countList.doubleFormat(countList.getQuantity(),2)%>">
</td>
<td width="50">
<input type="submit" name="update" value="修改" />
</td>
<td width="46">
<input type="submit" name="delete" value="删除" />
</td>
</tr>
</form>
<%
i = i + 1;
qty = qty + countList.getQuantity();
}
%>
<form method="POST" onsubmit="return VerifyInput(this);">
<input type="hidden" name="mode" value="insert"/>
<tr>
<td class="textb" width="46"><%=curMarkId%>
<input type="hidden" name="markId" value="<%=curMarkId%>" >
</td>
<td class="textb" width="154">
<input type="text" name="mark" >
</td>
<td class="textb" width="150">
<input type="text" name="quantity" >
</td>
<td width="50">
<input type="submit" name="insert" value="增加" />
</td>
<td width="46">
<input type="reset" name="reset" value="重置" />
</td>
</tr>
</form>
</table>
<b><span class="textb">件数:<%=i%> 数量:<%=countList.doubleFormat(qty,2)%> </span></b> </blockquote>
<form method="post" action="InsertSaleInventory.jsp?slipId=<%=slipId%>&productId=<%=productId%>&curMarkId=<%=curMarkId%>">
<blockquote>
<input type="submit" name="next" value="唛单增加结束" />
</blockquote>
</form>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -