alarmInventory.jsp 1.8 KB

<%@ include file="/common/taglibs.jsp" %>
<%@ page language="java" pageEncoding="UTF-8" %>


<style>
    @media print {
        .page-title {
            display: none;
        }

        .portlet-title {
            display: none;
        }
    }
</style>
<!-- BEGIN PAGE HEADER-->
<h3 class="page-title">
    <fmt:message key="menu.cloud"/>
    <small><fmt:message key="库存预警"/> </small>
</h3>
<!-- BEGIN PAGE CONTENT-->
<div class="row">
    <div class="col-md-12">

        <!-- BEGIN EXAMPLE TABLE PORTLET-->
        <div class="portlet box red">
            <div class="portlet-title">
                <div class="caption">
                    <i class="fa fa-bell-o"></i><fmt:message key="库存预警"/>
                </div>
                <div class="actions">
                    <a href="#" class="btn btn-default btn-sm" onclick="window.print();">
                        <i class="fa fa-print"></i> 打印 </a>
                </div>
            </div>
            <div class="portlet-body">
                <table class="table table-striped table-bordered table-hover">
                    <thead>
                    <tr>
                        <th class="sorted order2">料件编号</th>
                        <th>所需数量</th>
                        <th>库存数量</th>
                    </tr></thead>
                    <tbody>
                    <c:forEach items="${alarmInventory}" var="alarmItem">
                        <tr class="odd">
                            <td>${alarmItem.partNumber}</td>
                            <td>${alarmItem.needReel}</td>
                            <td>${alarmItem.stockReel}</td>
                        </tr>
                    </c:forEach>

                    </tbody></table>

            </div>
        </div>
        <!-- END EXAMPLE TABLE PORTLET-->
    </div>
</div>
<!-- END PAGE CONTENT-->