locationContainer.html
7.84 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<style>
#toolbar1{
display: inline-block;
/*position: absolute;*/
margin: 10px auto;
line-height: 34px;
}
</style>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 select-info">
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active" id="tabHeader">
<div class="col-sm-12 select-info">
<form id="task-form">
<div class="select-list">
<ul>
<li>
容器编号:<input type="text" name="containerCode"/>
</li>
<!-- <li>-->
<!-- 源库位编号:<input type="text" name="fromLocation"/>-->
<!-- </li>-->
<li>
库位号:<input type="text" name="toLocation"/>
</li>
<li>
统计类型:<select id="zoneCode" name="zoneCode">
<option value="locationCode">库位</option>
<option value="containerCode">容器</option>
</select>
<li class="time" style="height: 30px">
<label>日期: </label>
<input type="text" class="time-input" id="startTime" placeholder="开始时间" name="createdBegin" autocomplete="off"/>
<span>-</span>
<input type="text" class="time-input" id="endTime" placeholder="结束时间" name="createdEnd" autocomplete="off"/>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset('task-form')"><i class="fa fa-refresh"></i> 重置</a>
<!--<a class="btn btn-success btn-rounded btn-sm" onclick="$.table.exportExcel()" shiro:hasPermission="receipt:receiptHeader:export"><i class="fa fa-download"></i> 导出</a>-->
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group hidden-xs" id="toolbar" role="group">
</div>
<input type="hidden" id="taskId" name="taskId" th:value="${taskId}"/>
<input type="hidden" id="internalTaskType" name="internalTaskType" th:value="${InternalTaskType}"/>
<table id="bootstrap-table" data-mobile-responsive="true" class="table table-bordered table-hover text-nowrap"></table>
</div>
<div class="tab-pane fade" id="tabDetail">
<div class="btn-group hidden-xs" id="toolbar1" role="group">
</div>
<table id="bootstrap-table1" data-mobile-responsive="true" class="table table-bordered table-hover text-nowrap"></table>
</div>
</div>
</div>
</div>
</div>
<div th:include="include :: footer"></div>
<script th:inline="javascript">
var prefix = ctx + "task/locationContainer";
var stations = [[${@dict.getType('station')}]];
var taskTypes=[[${@dict.getType('taskType')}]];
var taskStatus=[[${@dict.getType('taskStatus')}]];
var zone =[[${@zone.getCode()}]];
$(function() {
var options = {
url: prefix + "/list",
modalName: "任务管理",
sortName: "completeTime",
sortOrder: "desc",
showExport: true, //导出
search: false,
clickToSelect:true,
queryParams: queryParams,
columns: [{
checkbox: true
},
{
field: 'no',
align:'center',
title: '序号',
formatter: function (value, row, index) {
// 通过表的#id 可以得到每页多少条
var pageSize = $('#bootstrap-table').bootstrapTable('getOptions').pageSize;
// 通过表的#id 可以得到当前第几页
var pageNumber = $('#bootstrap-table').bootstrapTable('getOptions').pageNumber;
// 返回每条的序号: 每页条数 * (当前页 - 1 )+ 序号
return pageSize * (pageNumber - 1) + index + 1;
}
},
{
field : 'location',
align:'center',
title : '库位号',
},
{
field : 'containerCode',
align:'center',
title : '容器号' ,
},
{
field : 'taskQty',
align:'center',
title : '总出入库次数',
},
{
field: 'inQty',
title: '入库次数',
align:'center'
},
{
field: 'outQty',
title: '出库次数',
align:'center'
},
// {
// field : 'fromLocation',
// title : '源库位号',
// align:'center',
// },
//
// {
// field : 'completeTime',
// align:'center',
// title : '完成时间' ,
// }
]
};
$.table.init(options);
});
function createtable(url,taskId) {
// $("#tabDetail").children().remove();
$("#myTab li").removeClass("active");
$(".tab-pane").removeClass("in active");
$("#myTab li:eq(1)").addClass("active");
$("#tabDetail").addClass("in active");
$.ajax({
url:url,
type: 'post',
data:{
taskId:taskId
},
success : function (value) {
// console.log(value);
$("#bootstrap-table1").bootstrapTable('load', value.data);
}
})
}
function queryParams(params) {
return {
InternalTaskType: +[[${InternalTaskType}]],
// 传递参数查询参数
pageSize: params.limit,
pageNum: params.offset / params.limit + 1,
searchValue: params.search,
orderByColumn: params.sort,
isAsc: params.order
};
};
function print() {
let rows = $("#bootstrap-table").bootstrapTable('getSelections');
if ($.common.isEmpty(rows)) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
let ids = rows[0].id;
for(let i = 1; i < rows.length; i++) {
ids = ids + "," + rows[i].id;
}
let url = ctx + 'task/taskDetail/report/' + ids;
$.modal.open("任务打印" , url);
}
</script>
</body>
</html>