agvTask.html
9.52 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<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>
任务id:<input type="text" name="id"/>
</li>-->
<li>
起点:<input type="text" name="fromPort"/>
</li>
<li>
终点:<input type="text" name="toPort"/>
</li>
<li>
容器编号:<input type="text" name="containerCode"/>
</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">
<a class="btn btn-outline btn-success btn-rounded" onclick="stationToLocation()">
<i class="fa fa-plus"></i> 站台-缓存库位
</a>
<a class="btn btn-outline btn-success btn-rounded" onclick="locationToStation()">
<i class="fa fa-plus"></i> 缓存库位-站台
</a>
<a class="btn btn-outline btn-success btn-rounded" onclick="stationToDevice()">
<i class="fa fa-plus"></i> 站台-站台
</a>
</div>
<table id="bootstrap-table" data-mobile-responsive="true"
class="table table-bordered table-hover"></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"></table>
</div>
</div>
</div>
</div>
</div>
<div th:include="include :: footer"></div>
<script th:inline="javascript">
var prefix = ctx + "task/agvTask";
var prefix_select = ctx + "task/agvTaskSelect";
var stations = [[${@dict.getType('station')}]];
var taskTypes = [[${@dict.getType('taskType')}]];
var taskStatus = [[${@dict.getType('taskStatus')}]];
var taskDetailStatus = [[${@dict.getType('taskDetailStatus')}]];
$(function () {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
modalName: "任务管理",
sortName: "id",
sortOrder: "desc",
search: false,
clickToSelect: true,
columns: [
{
field: 'TaskNo',
title: '任务ID',
sortable: false
},
{
field: 'FromPoint',
title: '开始点位',
visible: true
},
{
field: 'ToPoint',
title: '结束点位',
visible: true
},
{
field: 'AgvNo',
title: '小车编号',
visible: false
},
{
field: 'State',
title: '状态',
visible: true,
formatter: function (value, row, index) {
if (value == undefined) {
return '';
}
var html = '';
switch (value) {
case 0:
html = '<span style="color:red">异常</span>';
break;
case 1:
html = '创建';
break;
case 10:
html = '<span style="color:blue">下发</span>';
break;
case 20:
html = '执行';
break;
case 100:
html = '<span style="color:#54a70d">完成</>';
break;
default:
html = value;
break;
}
return html;
}
},
{
field: 'Remark',
title: '备注',
visible: true
},
{
field: 'created',
title: '日期',
visible: true
},
/*{
field: 'containerCode',
title: '容器号',
visible: true
},*/
{
title: '操作',
align: 'center',
formatter: function (value, row, index) {
var actions = [];
actions.push('<a class="btn btn-info btn-xs " href="#" onclick="removeAgvTask(\'' + row.TaskNo + '\')"><i class="fa fa-list-ul"></i>取消</a> ');
// if (row.State < 10) {
// actions.push('<a class="btn btn-success btn-xs ' + executeFlag + '" href="#" onclick="execute(\'' + row.id + '\')"><i class="fa fa-send" style="padding-right: 1px;"></i>执行</a> ');
// actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>取消</a> ');
// actions.push('<a class="btn btn-primary btn-xs ' + completeFlag + '" href="#" onclick="complete(\'' + row.id + '\')"><i class="fa fa-check"></i>完成</a>');
// }
return actions.join('');
}
}
]
};
$.table.init(options);
});
/*任务列表-批量删除任务*/
function batchRemove() {
//var rows = $.common.isEmpty($.table._option.taskId) ? $.table.selectFirstColumns() : $.table.selectColumns($.table._option.taskId);
var rows = $("#bootstrap-table").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
$.modal.confirm("确认要删除选中的" + rows.length + "条数据吗?", function () {
var url = ctx + 'task/agvTask/remove';
var ids = "";
for (var i = 0; i < rows.length; i++) {
ids = ids + rows[i].id + ","
}
var data = {"ids": ids.substring(0, ids.length - 1)};
$.operate.submit(url, "post", "json", data);
})
}
function stationToLocation() {
$.modal.open("站台到库位", prefix_select + "/stationToLocation")
}
function locationToStation() {
$.modal.open("库位到站台", prefix_select + "/locationToStation")
}
function stationToDevice() {
$.modal.open("站台到站台", prefix_select + "/stationToDevice")
}
function removeAgvTask(id) {
/* var rows = $("#bootstrap-table").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
var ids = "";
for (var i = 0; i < rows.length; i++) {
ids = ids + rows[i].id + ","
}
}*/
$.modal.confirm("确认要执行选中的" + rows.length + "条数据吗?", function () {
var url = ctx + 'task/agvTaskSelect/removeAgvTask';
var data = {"TaskNo": id};
$.operate.submit(url, "post", "json", data);
})
}
</script>
</body>
</html>