📄 consignselect.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<%@ include file="../../publicModel.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>consignSelect.jsp</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<html:form action="/consignSelect" method="post">
<h2 align="center">发货单查询条件</h2>
<table border="0" align="center">
<tr>
<td>发货日期(起):</td>
<td>
<html:select property="startConsignDate">
<html:option value="0">--请选择--</html:option>
<html:options collection="list" property="consignDate" labelProperty="consignDate"/>
</html:select>
</td>
<td>发货日期(止):</td>
<td>
<html:select property="endConsignDate">
<html:option value="0">--请选择--</html:option>
<html:options collection="list" property="consignDate" labelProperty="consignDate"/>
</html:select>
</td>
</tr>
<tr>
<td>客户名称:</td>
<td>
<html:select property="cusCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="list" property="cusCode" labelProperty="cusCode"/>
</html:select>
</td>
<td>订单号:</td>
<td>
<html:text property="orderCode"></html:text>
</td>
</tr>
<tr>
<tr>
<td>发货单号</td>
<td>
<html:text property="consignCode"></html:text>
</td>
<td>货物名称</td>
<td>
<html:select property="wareCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="warelist" property="wareCode" labelProperty="wareCode"/>
</html:select>
</td>
</tr>
<tr>
<td>部门名称</td>
<td>
<html:select property="deptCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="list" property="deptCode" labelProperty="deptCode"/>
</html:select>
</td>
<td>销售员<br></td>
<td>
<html:select property="personCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="list" property="personCode" labelProperty="personCode"/>
</html:select>
</td>
</tr>
<tr>
<td>销售类型</td>
<td>
<html:select property="sellTypeCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="list" property="sellTypeCode" labelProperty="sellTypeCode" />
</html:select>
<br></td>
<td>
<br>
</td>
<td><br></td>
</tr>
<tr>
<td>
</td>
<td>
<html:checkbox value="审核" property="checker">审核</html:checkbox>
<html:checkbox value="未审核" property="checker">未审核</html:checkbox>
<html:checkbox value="全部" property="checker">全部</html:checkbox>
</td>
</tr>
<tr>
<td colspan="4" align="center"><html:submit value="确定"/> <html:reset value="取消"/></td>
</tr>
</table>
</html:form>
<h2 align="center">发货单列表</h2>
<table width="850" height="139" border="1" align="center" cellSpacing=0 cellPadding=2 id="PowerTable">
<tr width=100% align=middle bgcolor=#C4E6DE >
<td width="130">发货日期</td>
<td>发货单号</td>
<td>客户名称</td>
<td>部门名称</td>
<td>销售员</td>
<td>销售类型</td>
<td>货物名称</td>
<td width="43">规格</td>
<td width="57">单位</td>
<td>发货数量</td>
<td>实收数量</td>
<td>不含税单价</td>
<td>含税单价</td>
<td>含税金额</td>
<td>税额</td>
<td>折扣额</td>
<td>制单人</td>
<td>审核人</td>
<td width="60">查看</td>
</tr>
<logic:iterate id="consignList" name="consignlist">
<tr>
<td width="130">${consignList[0]}</td>
<td>${consignList[1]}</td>
<td>${consignList[2]}</td>
<td>${consignList[3]}</td>
<td>${consignList[4]}</td>
<td>${consignList[5]}</td>
<td>${consignList[6]}</td>
<td width="43">${consignList[7]}</td>
<td width="57">${consignList[8]}</td>
<td>${consignList[9]}</td>
<td>${consignList[10]}</td>
<td>${consignList[11]}</td>
<td>${consignList[12]}</td>
<td>${consignList[13]}</td>
<td>${consignList[14]}</td>
<td>${consignList[15]}</td>
<td>${consignList[16]}</td>
<td>${consignList[17]}</td>
<td width="60"><html:link action="consignRelation.do?opera=invoice&conCode=${consignList[1]}">发票</html:link>
<html:link action="consignRelation.do?opera=retu&conCode=${consignList[1]}">回款</html:link></td>
</tr>
</logic:iterate>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -