TaskDetail.js
12.9 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
layui.config({
base: "/js/"
}).use(['form', 'element', 'vue', 'layer', 'laydate', 'jquery', 'table', 'hhweb', 'utils', 'Universal'], function () {
var form = layui.form,
layer = layui.layer,
element = layui.element,
laydate = layui.laydate,
$ = layui.jquery,
table = layui.table,
hhweb = layui.hhweb,
Universal = layui.Universal;
var AreaName = 'task';
var TableName = 'TaskDetail';
var vm = new Vue({
el: '#modifyForm'
});
var vmq = new Vue({
el: '#panelSearch',
data: {
}
});
var mainList = {
NoData: function () {
return "<div id='background' style='width:100%;height:100%;background-image:url(../../imagesData.png);background-repeat:no-repeat;background-size:cover;'>.</div>"
},
mainList: function () {
table.reload('mainList', {
url: "/" + AreaName + "/" + TableName + "/Load"
, method: "post"
, text: { none: this.NoData() }
, done: function (res, curr, count) {
if (curr > 1 && res.data.length == 0) {
table.reload('mainList', {
page: { curr: 1 }// 修改页码
, text: { none: mainList.NoData() }
});
}
}
});
}
};
//编辑
var EditInfo = function (tabledata) {
data = tabledata;
vm.$set('$data', data);
//表单修改时填充需修改的数据
var list = {};
$('.ClearSelector_' + TableName).each(function () {
var selDom = ($(this));
if ($(selDom)[0].name.search("q") == -1) {
list[$(selDom)[0].name] = data[$(selDom)[0].name] + "";
}
});
//表单修改时填充需修改的数据
form.val('modifyForm', list);
};
var selfbtn = {
//自定义按钮
UpWcs: function () {
var checkStatus = table.checkStatus('mainList');
var count = checkStatus.data.length;//选中的行数
var data = checkStatus.data;
console.log(data[0].Status);
if (count == 1) {
if (data[0].Roadway != 3 || data[0].ContainerCode.indexOf("PP") != 0) {
layer.alert("错误:当前任务不是PP片任务", { icon: 5, shadeClose: true, title: "错误信息" }, function (index) { layer.close(index); });
return false;
}
if (data[0].SourceLocation != "EntranceStationY01") {
layer.alert("错误:当前任务不是排版房任务", { icon: 5, shadeClose: true, title: "错误信息" }, function (index) { layer.close(index); });
return false;
}
if (data[0].TaskType != "500" && data[0].TaskType != "1000") {
layer.alert("错误:当前任务不是入库任务", { icon: 5, shadeClose: true, title: "错误信息" }, function (index) { layer.close(index); });
return false;
}
if (data[0].Status != 10) {
layer.alert("错误:当前任务不是已下发任务", { icon: 5, shadeClose: true, title: "错误信息" }, function (index) {layer.close(index); });
return false;
}
if (data[0].DestinationLocation == "PPP_WareCell") {
layer.alert("错误:当前任务还未找到仓位,请为该任务请求仓位", { icon: 5, shadeClose: true, title: "错误信息" }, function (index) { layer.close(index); });
return false;
}
layer.confirm('确定要修改'+data[0].ContainerCode+'任务的WCS状态??', { icon: 3 }, function (index) {
$.ajax({
url: "/task/Task/UpWcsTask",
type: "post",
data: { task: data[0] },
dataType: "json",
// async: false,
success: function (result) {
if (result.code == 200) {
layer.msg('任务修改成功', { icon: 6, shade: 0.4, time: 1500 });
} else {
layer.alert("任务修改失败:" + result.msg, { icon: 5, shadeClose: true, title: "错误信息" });
}
},
error: function (error) {
layer.alert(error.responseText, { icon: 2, title: '提示' });
}
})
}, function () {
layer.close();
});
}
else
layer.alert("只能一条数据", { icon: 5, shadeClose: true, title: "错误信息" });
},
//修改优先级
UpPriority: function () {
var checkStatus = table.checkStatus('mainList');
var count = checkStatus.data.length;//选中的行数
var data = checkStatus.data;
if (count != 1) {
layer.alert("请选择一条数据", { icon: 5, shade: 0.4 });
return;
}
if (data[0].ContainerCode.indexOf("CP") != 0) {
layer.alert("只允许修改成品库任务优先级!", { icon: 5, shade: 0.4 });
return;
}
$("[name = 'UpName']").val("");
$("[name = 'UpPriority']").val("");
layer.open({
title: '请输入优先级',
area: ["300px", "350px"],
type: 1,
content: $('#UpdataPriority'),
btn: ['确认'],
yes: function (index) {
var priority = $("[name = 'UpPriority']").val();
var Name = $("[name = 'UpName']").val();
if (priority == "") {
layer.alert("请输入优先级!", { icon: 2, title: '提示' });
}
else if (priority < 99 || priority > 500) {
layer.alert("优先级最低99,最大500!", { icon: 2, title: '提示' });
}
else {
layer.close(index);
layer.open({
title: '调整优先级',
content: "调整" + data[0].ContainerCode + "托盘的任务优先级",
btn: ['提交', '关闭'],
yes: function (index) {
$.ajax({
async: false,
url: "/" + "task" + "/" + "Task" + "/UpdataPriority",
type: "post",
data: {
Task: data[0],
Priority: priority,
UpName: Name
},
dataType: "json",
success: function (result) {
if (result.Code == 200) {
if (data[0].Status > 5) {
$.ajax({
async: false,
url: "/" + "task" + "/" + "Task" + "/AbnormalTask",
type: "post",
data: {
code: data[0].TaskNo,
type: priority,
Name: name
},
dataType: "json",
success: function (result) {
if (result.Code == 200) {
layer.msg('任务优先级修改成功', { icon: 6, shade: 0.4, time: 1000 });
mainList.mainList();
layer.close(index);
} else {
layer.alert("修改WMS任务优先级失败:" + result.msg,
{ icon: 2, title: '提示' });
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
layer.alert(errorThrown, { icon: 2, title: '提示' });
}
});
} else {
layer.close(index);
layer.msg('任务优先级修改成功', { icon: 6, shade: 0.4, time: 1000 });
mainList.mainList();
}
} else {
layer.alert("修改WMS任务优先级失败:" + result.msg, { icon: 2, title: '提示' });
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
layer.alert(errorThrown, { icon: 2, title: '提示' });
}
});
},
btn2: function (index) {
layer.close(index);
mainList.mainList();
}
});
}
}
});
},
};
var selector = {
'BusinessType': {
SelType: "FromDict",
SelFrom: "businessType",
SelModel: "BusinessType",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='BusinessType']"), $("[name='qBusinessType']")]
},
'FirstStatus': {
SelType: "FromDict",
SelFrom: "taskStatus",
SelModel: "FirstStatus",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='FirstStatus']"), $("[name='qFirstStatus']")]
},
'LastStatus': {
SelType: "FromDict",
SelFrom: "taskStatus",
SelModel: "LastStatus",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='LastStatus']"), $("[name='qLastStatus']")]
},
'Status': {
SelType: "FromDict",
SelFrom: "taskStatus",
SelModel: "Status",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='Status']")]
},
'TaskType': {
SelType: "FromDict",
SelFrom: "taskType",
SelModel: "TaskType",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='TaskType']")]
},
'Station': {
SelType: "FromUrl",
SelFrom: "/general/Station/Load",
SelModel: "Station",
SelLabel: "Name",
SelValue: "Code",
Dom: [$("[name='Station']"), $("[name='qStation']")]
},
'SourceLocation': {
SelType: "FromUrl",
SelFrom: "/general/Station/Load",
SelModel: "SourceLocation",
SelLabel: "Name",
SelValue: "Code",
Dom: [$("[name='SourceLocation']"), $("[name='qSourceLocation']")]
},
'DestinationLocation': {
SelType: "FromUrl",
SelFrom: "/general/Station/Load",
SelModel: "DestinationLocation",
SelLabel: "Name",
SelValue: "Code",
Dom: [$("[name='DestinationLocation']"), $("[name='qDestinationLocation']")]
},
};
var vml = new Array({
vm: vm,
vmq: vmq,
});
Universal.BindSelector($, form, vml, selector);
Universal.mmain(AreaName, TableName, table, layer, element, laydate, $, vm, vmq, EditInfo, selfbtn, mainList, form);
});