提交 | 用户 | 时间
|
58d006
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
A |
2 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
3 |
<html xmlns="http://www.w3.org/1999/xhtml" |
|
4 |
xmlns:c="http://java.sun.com/jsp/jstl/core" |
|
5 |
xmlns:h="http://java.sun.com/jsf/html" |
|
6 |
xmlns:f="http://java.sun.com/jsf/core" |
|
7 |
xmlns:ui="http://java.sun.com/jsf/facelets"> |
|
8 |
<ui:composition template="/template/nit/tmp_brief.xhtml"> |
|
9 |
<ui:define name="acss"> |
|
10 |
<style> |
|
11 |
#infoTable { |
|
12 |
margin-bottom: 0px |
|
13 |
} |
|
14 |
td:nth-child(2n+1) { |
|
15 |
text-align: center; |
|
16 |
background:#f5f5f5; |
|
17 |
} |
|
18 |
.tr { |
|
19 |
/*text-align: right;*/ |
|
20 |
} |
|
21 |
</style> |
|
22 |
</ui:define> |
|
23 |
<ui:define name="acontent"> |
|
24 |
<input type="hidden" value="#{param.poundNo}" id="poundNo" /> |
|
25 |
<input type="hidden" value="#{sessionScope.login_sess_workername}" id="workername" /> |
|
26 |
<div class="row"> |
|
27 |
<div class="col-xs-12"> |
|
28 |
<div class="widget-box"> |
|
29 |
<div class="widget-header widget-header-flat"> |
|
30 |
<h4 class="widget-title">磅单</h4> |
|
31 |
<div class="widget-toolbar"> |
|
32 |
<!-- <button class="btn btn-xs btn-info" id="printP"> |
|
33 |
<i class="ace-icon fa fa-print bigger-110">打印</i> |
|
34 |
</button> --> |
|
35 |
</div> |
|
36 |
</div> |
|
37 |
|
|
38 |
<div class="widget-body"> |
|
39 |
<table class="table table-bordered table-hover" id="infoTable"> |
|
40 |
<tr> |
|
41 |
<td width="10%">磅 单 号</td> |
|
42 |
<td class="static" data-bind="text: o().poundNo"></td> |
|
43 |
<td width="10%">车 牌 号</td> |
|
44 |
<td class="static" data-bind="text: o().vehicleID"></td> |
|
45 |
<td width="10%">业务单号</td> |
|
46 |
<td class="static" data-bind="text: o().businessNo"></td> |
|
47 |
<td width="10%">卡 号</td> |
|
48 |
<td class="static" data-bind="text: o().cardID"></td> |
|
49 |
</tr> |
|
50 |
<tr> |
|
51 |
<td>发货单位</td> |
|
52 |
<td class="static" data-bind="text: o().fromunitname"></td> |
|
53 |
<td>收货单位</td> |
|
54 |
<td class="static" data-bind="text: o().tounitname"></td> |
|
55 |
<td>磅房编号</td> |
|
56 |
<td class="static" data-bind="text: o().whouseNo"></td> |
|
57 |
<td>磅房名称</td> |
|
58 |
<td class="static" data-bind="text: o().whousename"></td> |
|
59 |
</tr> |
|
60 |
<tr> |
|
61 |
<td>物料名称</td> |
|
62 |
<td class="static" data-bind="text: o().materialname"></td> |
|
63 |
<td>规格型号</td> |
|
64 |
<td class="static" data-bind="text: o().materialguige"></td> |
|
65 |
<td>物料编号</td> |
|
66 |
<td class="static" data-bind="text: o().materialno"></td> |
|
67 |
<td>复磅时间</td> |
|
68 |
<td class="static" data-bind="text: o().fubangtime"></td> |
|
69 |
</tr> |
|
70 |
<tr> |
|
71 |
<td>毛 重</td> |
|
72 |
<td class="static tr" data-bind="text: o().gross"></td> |
|
73 |
<td>毛重时间</td> |
|
74 |
<td class="static" data-bind="text: o().grosstime"></td> |
|
75 |
<td>毛重司磅</td> |
|
76 |
<td class="static" data-bind="text: o().grossWeighman"></td> |
|
77 |
<td>毛重来源</td> |
|
78 |
<td class="static" data-bind="text: o().grossFrom == 'auto' ? '系统读数' : '手工录入'"></td> |
|
79 |
</tr> |
|
80 |
<tr> |
|
81 |
<td>皮 重</td> |
|
82 |
<td class="static tr" data-bind="text: o().tare"></td> |
|
83 |
<td>皮重时间</td> |
|
84 |
<td class="static" data-bind="text: o().taretime"></td> |
|
85 |
<td>皮重司磅</td> |
|
86 |
<td class="static" data-bind="text: o().tareWeighman"></td> |
|
87 |
<td>皮重来源</td> |
|
88 |
<td class="static" data-bind="text: o().tareFrom == 'auto' ? '系统读数' : '手工录入'"></td> |
|
89 |
</tr> |
|
90 |
<tr> |
|
91 |
<td>净 重</td> |
|
92 |
<td class="static tr" data-bind="text: o().weight"></td> |
|
93 |
<td>扣 重1</td> |
|
94 |
<td class="static tr" data-bind="text: o().subtra1"></td> |
|
95 |
<td>扣 重2</td> |
|
96 |
<td class="static tr" data-bind="text: o().subtra2"></td> |
|
97 |
<td>保存时间</td> |
|
98 |
<td class="static" data-bind="text: o().lastSaveTime"></td> |
|
99 |
</tr> |
|
100 |
<tr> |
|
101 |
<td>扣后重量</td> |
|
102 |
<td class="static tr" data-bind="text: o().balanceWeight"></td> |
|
103 |
<td>对方净重</td> |
|
104 |
<td class="static tr" data-bind="text: o().primaryNetWeight"></td> |
|
105 |
<td>作 废 人</td> |
|
106 |
<td class="static" data-bind="text: o().destroyer"></td> |
|
107 |
<td>作废时间</td> |
|
108 |
<td class="static" data-bind="text: o().destroyTime"></td> |
|
109 |
</tr> |
|
110 |
<tr> |
|
111 |
<td>毛重历史</td> |
|
112 |
<td class="static" data-bind="text: o().grosses"></td> |
|
113 |
<td>毛重时间历史</td> |
|
114 |
<td class="static" data-bind="text: o().grossTimes"></td> |
|
115 |
<td>皮重历史</td> |
|
116 |
<td class="static" data-bind="text: o().tares"></td> |
|
117 |
<td>皮重时间历史</td> |
|
118 |
<td class="static" data-bind="text: o().tareTimes"></td> |
|
119 |
</tr> |
|
120 |
<tr> |
|
121 |
<td>备 注</td> |
|
122 |
<td colspan="7" class="static" data-bind="text: o().note"></td> |
|
123 |
</tr> |
|
124 |
</table> |
|
125 |
</div> |
|
126 |
</div> |
|
127 |
</div> |
|
128 |
<!-- <div class="col-xs-12"> |
|
129 |
<div class="widget-box"> |
|
130 |
<div class="widget-header widget-header-flat"> |
|
131 |
<h4 class="widget-title">现场照片</h4> |
|
132 |
</div> |
|
133 |
|
|
134 |
<div class="widget-body"> |
|
135 |
<div class="widget-main"> |
|
136 |
<ul class="ace-thumbnails clearfix" data-bind="foreach: list"> |
|
137 |
<li> |
|
138 |
<a data-bind="attr: {href: 'http://125.46.81.106:8080' + url}" data-rel="colorbox"> |
|
139 |
<img width="100" height="100" alt="100x100" data-bind="attr: {src: 'http://125.46.81.106:8080' + url}"/> |
|
140 |
<div class="text"> |
|
141 |
<div class="inner">过磅照片</div> |
|
142 |
</div> |
|
143 |
</a> |
|
144 |
</li> |
|
145 |
</ul> |
|
146 |
</div> |
|
147 |
</div> |
|
148 |
</div> |
|
149 |
</div> --> |
|
150 |
</div> |
|
151 |
</ui:define> |
|
152 |
<ui:define name="myscript"> |
|
153 |
<script type="text/javascript" src="#{request.contextPath}/template/assets/js/jquery.colorbox.js"></script> |
|
154 |
<script src="#{request.contextPath}/basic/js/weightDocDetails.js?v=4"></script> |
|
155 |
</ui:define> |
|
156 |
</ui:composition> |
|
157 |
</html> |