diffInventory.jsp 3.6 KB

<%@ 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>