warehouseDetail.jsp
5.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html>
<html>
<head>
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link href="${ctx}/resource/css/member.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/tab-slide.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/jquery-date/jquery-ui-1.10.1.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/latoja.datepicker.css" rel="stylesheet" />
<link href="${ctx }/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/home.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${ctx }/resource/js/utils/jquery/jquery-ui-1.10.1.min.js"></script>
<script type="text/javascript" src="${ctx }/resource/js/utils/jquery/jquery.ui.datepicker-zh-cn.js"></script>
<script type="text/javascript" src="${ctx }/resource/js/user/pick/pick.js"></script>
<script type="text/javascript" src="${ctx }/resource/js/user/pick/self.js?r=<%Math.random(); %>"></script>
<script type="text/javascript">
var errorMessage = '${ resultInfo.message }';
var minDate = '+0'; //最小提货日期
</script>
</head>
<body>
<jsp:include page="${ctx }/view/common/header.jsp" />
<div class="bigbox">
<jsp:include page="${ctx }/view/common/menu.jsp" />
<div class="etlist rightbox0">
<h2 style="text-align: left;">提货确认</h2>
<div class="crossline"></div>
<div class="clear"></div>
<div class="pick self">
<div class="content">
<h4>填写相关信息</h4>
<div class="content-msg">
<div class="input-box">
<form id="pickForm" action="${ctx }/user/pick/warehouse" method="post">
<p>
<span>提货人:</span>
<label><input type="radio" name="pickType" checked="checked" value="01" />本人自提</label>
<label><input type="radio" name="pickType" value="02" />委托他人</label>
</p>
<div id="selfPick">
<small>请携带本人身份证原件,在选择的日期当天
<font id="spPickTime">
${warehouse.businessStartTime }-${warehouse.businessEndTime }
</font>
间,前来提货!
</small>
</div>
<div id="otherPick" class="otherPick" style="display: none;">
<p>
<span>提货人姓名:</span>
<input type="text" id="delegateName" name="delegateName" maxlength="8" />
</p>
<p>
<span>提货人身份证号:</span>
<input type="text" id="delegateId" name="delegateId" maxlength="18" />
</p>
<small>请携带提货人身份证原件,会员身份证复印件在选择的日期当天
${warehouse.businessStartTime }-${warehouse.businessEndTime }间,前来提货!
</small>
</div>
<p>
<span>提货日期:</span>
<input id="pickDate" name="pickDate" readonly="readonly" />
</p>
<p>
<span>联系人:</span>${warehouse.contactName }
<span>联系电话:</span>${warehouse.contactPhone }
</p>
<p>
<span>提货地址:</span>
${warehouse.province }${warehouse.city }
${warehouse.area }${warehouse.address }
</p>
<input type="hidden" name="warehouseCode" value="${warehouse.code }" />
</form>
</div>
<div class="tip">
<p>• 为了减少您提货时的等待时间,请在您选择的日期当天前来提货</p>
<p>• 如有问题请拨打客服热线 400-969-0800</p>
</div>
</div>
<h4>确认提货信息</h4>
<div class="pick-msg">
<table cellpadding='0' cellspacing='0'>
<thead>
<tr>
<th width="20%">藏品代码</th>
<th class="left-font">藏品名称</th>
<th>可提数量</th>
<th>提货数量</th>
</tr>
</thead>
<tbody>
<c:forEach items="${applyList }" var="pick">
<tr>
<td>${pick.otcCode }</td>
<td class="left-font">${pick.otcName }</td>
<td>${pick.enableAmount }</td>
<td>${pick.occurAmount }</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
<div class="pick-person">
<div style="width:80%; height:60px; display: inline-block;">
<span id="spPickDate" class="bold"></span>
<span id="spPickType"></span>
<span id="spDelegateName"></span>
<span id="spDelegateId" class="bold"></span><br />
<span id="spPickAddress" style="display: none;">
提货地址:${warehouse.province }${warehouse.city }
${warehouse.area }${warehouse.address }
</span>
</div>
<a style="margin-top:15px;dispaly:block" class="red-btn" id="btnSubmit">确认提货</a>
</div>
</div>
</div>
</div>
</div>
<div class="clear"></div>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>