diffInventory.jsp
3.6 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
<%@ include file="/common/taglibs.jsp" %>
<%@ page language="java" pageEncoding="UTF-8" %>
<style type="text/css">
.modal-body {
position: relative;
padding: 15px;
height: 360px;
overflow-y: scroll;
}
.td-item{
display: block;
}
</style>
<!-- BEGIN PAGE HEADER-->
<h3 class="page-title">
<fmt:message key="库存比对"/>
</h3>
<!-- BEGIN PAGE CONTENT-->
<div class="row">
<div class="col-md-12">
<!-- BEGIN EXAMPLE TABLE PORTLET-->
<div class="portlet box blue">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-list-alt"></i>
</div>
</div>
<div class="portlet-body">
<table class="table table-striped table-hover table-bordered no-footer" role="grid" aria-describedby="sample_editable_1_info">
<thead class="dataTableHeader">
<tr role="row">
<th></th>
<th><fmt:message key="挚锦"/> (${fn:length(boxReels)})</th>
<th><fmt:message key="值不同"/>(${fn:length(sameDiffList)})</th>
<th><fmt:message key="佳世达"/>(${fn:length(qisdaReels)})</th>
<%--<th><fmt:message key="Facility"/></th>--%>
<%--<th><fmt:message key="Company"/></th>--%>
<%--<th><fmt:message key="料号"/></th>--%>
<%--<th><fmt:message key="已收/DN单数量"/></th>--%>
<%--<th><fmt:message key="差异"/></th>--%>
<%--<th><fmt:message key="DN单日期"/></th>--%>
<%--<th><fmt:message key="首盘日期"/></th>--%>
</tr>
</thead>
<tbody class="dataTableBody">
<c:set var="i" value="0"/>
<c:forEach items="${sameDiffList}" var="diffInfo">
<c:set var="i" value="${i+1}"/>
<tr>
<td>${i}</td>
<td></td>
<td><a href="${ctx}/dataLog/search.html?barcode=${diffInfo.reelId}" target="_blank">${diffInfo.reelId} (${diffInfo.diffDetails})</a></td>
<td></td>
</tr>
</c:forEach>
<c:forEach items="${boxReels}" var="diffInfo">
<c:set var="i" value="${i+1}"/>
<tr>
<td>${i}</td>
<td><a href="${ctx}/dataLog/search.html?barcode=${diffInfo.reelId}" target="_blank">${diffInfo.reelId}</a></td>
<td></td>
<td></td>
</tr>
</c:forEach>
<c:forEach items="${qisdaReels}" var="diffInfo">
<c:set var="i" value="${i+1}"/>
<tr>
<td>${i}</td>
<td></td>
<td></td>
<td><a href="${ctx}/dataLog/search.html?barcode=${diffInfo.reelId}" target="_blank">${diffInfo.reelId}</a></td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
</div>
<!-- END EXAMPLE TABLE PORTLET-->
</div>
</div>
<c:set var="scripts" scope="request">
<script type="text/javascript">
$(document).ready(function(){
});
</script>
</c:set>