|
@@ -727,28 +727,31 @@ export default {
|
|
|
},
|
|
|
handlePickupCompleted (row) {
|
|
|
const taskNos = row.taskNo
|
|
|
+ let vue = this
|
|
|
this.$modal.confirm('是否确认取货完成"' + taskNos + '"的任务?').then(function() {
|
|
|
pickupCompleteWcsTask(taskNos).then(response => {
|
|
|
- if (response.code === 200) {
|
|
|
- this.getList();
|
|
|
- this.$modal.msgSuccess(response.msg);
|
|
|
+ console.log(response)
|
|
|
+ if (response.code == 200) {
|
|
|
+ vue.getList();
|
|
|
+ vue.$modal.msgSuccess(response.msg);
|
|
|
} else {
|
|
|
- this.getList();
|
|
|
- this.$modal.msgError(response.msg);
|
|
|
+ vue.getList();
|
|
|
+ vue.$modal.msgError(response.msg);
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
},
|
|
|
handleComplete (row) {
|
|
|
const taskNos = row.taskNo
|
|
|
+ const vue = this
|
|
|
this.$modal.confirm('是否确认卸货完成"' + taskNos + '"的任务?').then(function() {
|
|
|
completeWcsTask(taskNos).then(response => {
|
|
|
if (response.code === 200) {
|
|
|
- this.getList();
|
|
|
- this.$modal.msgSuccess(response.msg);
|
|
|
+ vue.getList();
|
|
|
+ vue.$modal.msgSuccess(response.msg);
|
|
|
} else {
|
|
|
- this.getList();
|
|
|
- this.$modal.msgError(response.msg);
|
|
|
+ vue.getList();
|
|
|
+ vue.$modal.msgError(response.msg);
|
|
|
}
|
|
|
});
|
|
|
});
|