📄 exportitemsearchcon.jsp
字号:
<td align="right">
<b>售货单号:</b>
</td>
<td>
<SELECT size=1 name="billid">
<option value="0">请选择...</option>
<%
for(int i=0; i<billIdList.size(); i++)
{
tmpStr = (String)billIdList.get(i);
%>
<option value="<%=tmpStr%>"><%=tmpStr%></option>
<%
}
%>
</SELECT>
</td>
<td align="right">
<b>货物标识:</b>
</td>
<td>
<input type=text name='goodsid' size="20" class="none" onKeyDown="if(event.keyCode==13) mySubmit1();">
</td>
<td> </td>
</tr>
<tr>
<td align="right">
<b>销售人员:</b>
</td>
<td>
<SELECT size=1 name="salesperson">
<option value="">请选择...</option>
<%
for(int i=0; i<salesPersonList.size(); i++)
{
tmpStr = (String)salesPersonList.get(i);
%>
<option value="<%=tmpStr%>"><%=tmpStr%></option>
<%
}
%>
</SELECT>
</td>
<td align="right">
<b>货物名称:</b>
</td>
<td>
<input type=text name='goodsname' size="20" class="none" onKeyDown="if(event.keyCode==13) mySubmit1();">
</td>
<TD width=20%>
</TD>
</tr>
<tr>
<TD align="right"><b>单据状态:</b></TD>
<TD>
<SELECT name="confirmflage">
<option value="">请选择...</option>
<option value="1">确认单</option>
<option value="0">临时单</option>
</SELECT>
</TD>
<TD align="right"><b>排序方式:</b></TD>
<TD>
<SELECT name="orderstr">
<option value="BillID">售货单号升序</option>
<option value="BillID DESC">售货单号降序</option>
<option value="GoodsID">货物标识升序</option>
<option value="GoodsID DESC">货物标识降序</option>
<option value="GoodsName">货物名称升序</option>
<option value="GoodsName DESC">货物名称降序</option>
<option value="CreateTime">录入时间升序</option>
<option value="CreateTime DESC">录入时间降序</option>
</SELECT>
</TD>
<td width=20%>
<input name=searchbutton type=button value="查询" onClick='mySubmit1()' >
</td>
</tr>
</TABLE>
<TABLE width="100%" border="1" cellpadding="3" cellspacing="0" bordercolor="#FFFFFF" class="mailtable">
<tr>
<TD align="right" width=14%><b> 录入时间:</b></TD>
<TD width=65%>
起始
<input type=text name='createtime1' size="20" class="none">
<img src="./images/cal.gif" width="16" height="16" border="0" style="cursor:hand;" align="absmiddle" alt="弹出日历菜单" onClick="Calendar_createtime1()">
终止
<input type=text name='createtime2' size="20" class="none">
<img src="./images/cal.gif" width="16" height="16" border="0" style="cursor:hand;" align="absmiddle" alt="弹出日历菜单" onClick="Calendar_createtime2()">
</TD>
<TD> </TD>
</tr>
</TABLE>
</form>
<br>
<%
NumberFormat nf = NumberFormat.getNumberInstance();
nf.setMaximumFractionDigits(2);
%>
<form name="form2" method="post" action="" >
<font color=#215385><b>售货明细列表</b>(共 <font color="red"><%=totalItemNum%></font> 条明细信息)</font>
<br>
<div align="left">
<font color=#215385>销售总量:<font color=#FE60A3><%=totalAmount%></font> 总利润:<font color=#FE60A3><%=nf.format(totalProfit)%></font>元</font>
</div>
<IMG src="images/line1.gif" border=0>
<input type="hidden" name="start_rec_num" value=""><!--提交的时候设置-->
<input type="hidden" name="orderstr" value="<%=lastOrderStr%>">
<input type="hidden" name="billid" value="<%=lastBillId%>">
<input type="hidden" name="goodsid" value="<%=lastGoodsId%>">
<input type="hidden" name="goodsname" value="<%=lastGoodsName%>">
<input type="hidden" name="salesperson" value="<%=lastSalesPerson%>">
<input type="hidden" name="confirmflage" value="<%=lastConfirmFlage%>">
<input type="hidden" name="createtime1" value="<%=lastCreateTime1%>">
<input type="hidden" name="createtime2" value="<%=lastCreateTime2%>">
<TABLE width="100%" border="1" cellpadding="3" cellspacing="0" bordercolor="#FFFFFF" class="mailtable">
<%//
if(exportItemList.size()>0)
{
%>
<tr bgcolor="#C2CEDC">
<th>单号</th>
<th></th>
<th>货物标识</th>
<th>货物名称</th>
<th>数量</th>
<th>单价</th>
<th>折扣</th>
<th>利润</th>
<th>售货人</th>
<th>录入时间</th>
<th>状态</th>
<th>取消</th>
<th>删除</th>
</tr>
<%//
}
%>
<%//
int index = 0;
GoodsExportItemInfo tmpInfo = null;
for (index=0; index<exportItemList.size(); index++)
{
tmpInfo = (GoodsExportItemInfo)exportItemList.get(index);
%>
<tr <%if((index%2)==1){%>bgcolor="#CAE4F4"<%}%> >
<td align='center'><%= tmpInfo.getBillId() %></td>
<td align='center' width=2%><a href="<%= request.getContextPath() + "/goodsInfoView.do?goodsid=" + tmpInfo.getGoodsId() %>" target='goodsinfo'><IMG src="images/goods.gif" border=0 alt='查看货物信息'></a></td>
<td align='center'><%= tmpInfo.getGoodsId() %></td>
<td align='center'><%= tmpInfo.getGoodsName() %></td>
<td align='center'><%= tmpInfo.getExportAmount() %></td>
<td align='center'><%= nf.format(tmpInfo.getExportUnitPrice()) %></td>
<td align='center'>
<%
if(tmpInfo.getDiscount()==1)
{
%>
无
<%
}
else
{
%>
<font color=#FE60A3><%= tmpInfo.getDiscount()*10 %></font>折
<%
}
%>
</td>
<td align='center'><%= nf.format(tmpInfo.getProfit()) %></td>
<td align='center'><%= tmpInfo.getSalesPerson() %></td>
<td align='center'>
<%
String tmptime = tmpInfo.getCreateTime();
if(tmptime==null)tmptime="";
if(tmptime.length()>=19)
{
%>
<%= tmptime.substring(0,19) %>
<%
}
%>
</td>
<td align='center'>
<%
if(tmpInfo.getConfirmFlage().equals("0"))
{
%>
<font color=#E61577>临时单</font><font color=#215385>【</font><a href="javascript:submitTempExportBill('<%=curStartRecNum%>', '<%=tmpInfo.getBillId()%>') ">确认</a><font color=#215385>】</font>
<%//
}else{
%>
<font color=#007168>确认单</font>
<%//
}
%>
</td>
<td align='center'>
<a href="javascript:reimportGoodsForItem('<%=curStartRecNum%>', '<%=tmpInfo.getBillId()%>', '<%=tmpInfo.getGoodsId()%>') ">取消</a>
</td>
<td align='center'>
<a href="javascript:deleteAExportItem('<%=curStartRecNum%>', '<%=tmpInfo.getBillId()%>', '<%=tmpInfo.getGoodsId()%>') "><IMG src="images/delto.gif" border=0></a>
</td>
</tr>
<%//
}//--for
%>
</TABLE>
</form>
<!--
共 <font color="red"><%////=totalItemNum%></font> 条记录
每页 <font color="red"><%////=curPageRecNum%></font> 条记录
起始记录为 <font color="red"><%////=curStartRecNum%></font>
共 <font color="red"><%////=totalPageNum%></font> 页
当前为第 <font color="red"><%////=curPageIndex%></font> 页
末页首记录号为 <font color="red"><%////=lastPageFirstRecNum%></font>
-->
<div align="right">
<%
if(curStartRecNum!=1)
{
%>
<a href="javascript:gotoPageByN(1)"><IMG src="images/startpage.gif" border=0 alt='首页'></a>
<%
}
else
{
%>
<IMG src="images/startpage.gif" border=0 alt='首页'>
<%
}
if(curStartRecNum-curPageRecNum>=1)
{
%>
<a href="javascript:gotoPageByN(<%=curStartRecNum-curPageRecNum%>)"><IMG src="images/lastpage.gif" border=0 alt='上一页'></a>
<%
}
else
{
%>
<IMG src="images/lastpage.gif" border=0 alt='上一页'>
<%
}
if(curStartRecNum+curPageRecNum<=lastPageFirstRecNum)
{
%>
<a href="javascript:gotoPageByN(<%=curStartRecNum+curPageRecNum%>)"><IMG src="images/nextpage.gif" border=0 alt='下一页'></a>
<%
}
else
{
%>
<IMG src="images/nextpage.gif" border=0 alt='下一页'>
<%
}
if(curStartRecNum!=lastPageFirstRecNum && lastPageFirstRecNum>=1)
{
%>
<a href="javascript:gotoPageByN(<%=lastPageFirstRecNum%>)"><IMG src="images/endpage.gif" border=0 alt='末页'></a>
<%
}
else
{
%>
<IMG src="images/endpage.gif" border=0 alt='末页'>
<%
}
%>
</div>
<div align="center">
第 <select name="gotopagenum" onChange="gotoPage()">
<%for(int i=1; i<=totalPageNum; i++)
{%>
<option value="<%=(i-1)*curPageRecNum+1%>" <%if(i==curPageIndex){%>selected<%}%>><%=i%></option>
<%}%>
</select> 页
</div>
</td>
</tr>
<tr>
<td valign="middle" align="center"> </td>
</tr>
</table>
</td>
<td width="5"></td>
</tr>
<tr>
<td width="6"></td>
<td colspan="2" class="mainhead"> </td>
<td width="5"></td>
</tr>
<tr>
<td colspan="8" bgcolor="#214984" height="2"></td>
</tr>
</table>
</body>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -