entercancelList.jsp 3.4 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>运单冻结核销管理</title>
	<meta name="decorator" content="default"/>
	<script type="text/javascript">
		$(document).ready(function() {
			
		});
		function page(n,s){
			$("#pageNo").val(n);
			$("#pageSize").val(s);
			$("#searchForm").submit();
        	return false;
        }
	</script>
</head>
<body>
	<ul class="nav nav-tabs">
		<li class="active"><a href="${ctx}/land/entercancel/">运单冻结核销列表</a></li>
		<shiro:hasPermission name="land:entercancel:edit"><li><a href="${ctx}/land/entercancel/form">运单冻结核销添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="entercancel" action="${ctx}/land/entercancel/" method="post" class="breadcrumb form-search">
		<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
		<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
		<ul class="ul-form">
			<li>
				<label>车牌号:</label>
				<form:input path="vename" htmlEscape="false" maxlength="32" class="input-medium"/>
				<label>主单号:</label>
				<form:input path="manifest" htmlEscape="false" maxlength="32" class="input-medium"/>
			</li>
			<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
			<li class="clearfix"></li>
		</ul>
	</form:form>
	<sys:message content="${message}"/>
	<table id="contentTable" class="table table-striped table-bordered table-condensed">
		<thead>
		<tr>
				<th>车牌号</th>
				<th>车辆运输公司</th>
				<th>起始场站</th>
				<th>目的场站</th>
				<th>货代名称</th>
				<th>业务类型</th>
				<th>主单号</th>
				<th>货物重量</th>
				<th>地磅称重</th>
				<th>冻结标识</th>
				<th>更新时间</th>
				<shiro:hasPermission name="land:entercancel:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="entercancel">
			<tr>
				<td>${entercancel.vename }</td>
				<td>${entercancel.veCompanyName }</td>
				<td>
					<c:if test='${entercancel.startport =="4604000000"}'>西货站</c:if>
					<c:if test='${entercancel.startport =="4604499001"}'>三号货站</c:if>
					<c:if test='${entercancel.startport =="4604511001"}'>快邮货站</c:if>
				</td>
				<td>
					<c:if test='${entercancel.endport =="4604000000"}'>西货站</c:if>
					<c:if test='${entercancel.endport =="4604499001"}'>三号货站</c:if>
					<c:if test='${entercancel.endport =="4604511001"}'>快邮货站</c:if>
				</td>
				<td>${entercancel.agentname }</td>
				<td>${entercancel.businesstype }</td>
				<td>${entercancel.manifest }</td>
				<td>${entercancel.weight }</td>
				<td>${entercancel.grosswt }</td>
				<td>
					<c:if test='${entercancel.isfreeze=="1"}'>已入库核销</c:if>
					<c:if test='${entercancel.isfreeze=="0"}'>已出库冻结</c:if>
				</td>
				<td>
					<fmt:formatDate value="${entercancel.updateTime }" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<shiro:hasPermission name="land:entercancel:edit"><td>
    				<%-- <a href="${ctx}/land/entercancel/form?id=${entercancel.id}">修改</a> --%>
					<%-- <a href="${ctx}/land/entercancel/delete?id=${entercancel.id}" onclick="return confirmx('确认要删除该运单冻结核销吗?', this.href)">删除</a> --%>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>