alarmInventory.jsp
1.8 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
<%@ 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-->