szh_zidingyibiaoti
lilu 2 years ago
commit fd5b488e57

@ -212,6 +212,16 @@ export function TaskManageTruckCancelDispatchBatch(parameter) {
data: parameter data: parameter
}) })
} }
/**
* 批量派车通过任务ID
*/
export function TaskManageTruckCancelDispatchBatchByTask(parameter) {
return axios({
url: '/TaskManageTruck/CancelDispatchBatchByTask',
method: 'post',
data: parameter
})
}
/** /**
* 批量派车 * 批量派车
*/ */
@ -222,6 +232,16 @@ export function TaskManageTruckSendDispatchBatch(parameter) {
data: parameter data: parameter
}) })
} }
/**
* 批量派车通过任务ID
*/
export function TaskManageTruckSendDispatchBatchByTask(parameter) {
return axios({
url: '/TaskManageTruck/SendDispatchBatchByTask',
method: 'post',
data: parameter
})
}
/** /**
* 派车 * 派车
*/ */

@ -132,7 +132,7 @@
</a-form-item> </a-form-item>
</a-col> </a-col>
<!-- , { rules: [{ required: true, message: '请选择调度!' }] } --> <!-- , { rules: [{ required: true, message: '请选择调度!' }] } -->
<a-col :span="6"> <a-col :span="6" v-if="!taskPKId">
<a-form-item label="调度:" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback> <a-form-item label="调度:" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
<a-select v-decorator="['dispatcherId']" allowClear> <a-select v-decorator="['dispatcherId']" allowClear>
<a-select-option v-for="item in dispatcherIdData" :key="item.sysEmpId" :value="item.sysEmpId"> <a-select-option v-for="item in dispatcherIdData" :key="item.sysEmpId" :value="item.sysEmpId">
@ -1038,6 +1038,7 @@ export default {
}) })
sysUserQueryUserByPos({ pos: 'PCDD' }).then(res => { sysUserQueryUserByPos({ pos: 'PCDD' }).then(res => {
this.dispatcherIdData = res.data this.dispatcherIdData = res.data
console.log(this.dispatcherIdData)
}) })
GetCtn({ KeyWord: '' }).then(res => { GetCtn({ KeyWord: '' }).then(res => {
this.ctnList = res.data this.ctnList = res.data

@ -483,8 +483,8 @@ import {
TaskManageTruckGetInfoByTaskId, TaskManageTruckGetInfoByTaskId,
TaskManageTruckPrintTemplateWithHistoryList, TaskManageTruckPrintTemplateWithHistoryList,
TaskManageTruckPrint, TaskManageTruckPrint,
TaskManageTruckSendDispatchBatch, TaskManageTruckSendDispatchBatchByTask,
TaskManageTruckCancelDispatchBatch TaskManageTruckCancelDispatchBatchByTask
} from '@/api/modular/main/SendCar' } from '@/api/modular/main/SendCar'
export default { export default {
name: 'TaskmanageList', name: 'TaskmanageList',
@ -687,30 +687,37 @@ export default {
this.$message.error('请选择数据') this.$message.error('请选择数据')
return false return false
} }
let ApiArr = [] TaskManageTruckSendDispatchBatchByTask(pkIdArr).then(res => {
pkIdArr.forEach((item, index) => { if (res.data.succ) {
TaskManageTruckGetInfoByTaskId({ taskPkId: item }) this.$message.success('派车成功')
.then(res => { } else {
if (res.data.succ) { this.$message.error(`派车失败,${res.data.msg}`)
ApiArr.push(res.data.ext.pK_ID) }
if (index + 1 == pkIdArr.length) {
TaskManageTruckSendDispatchBatch(ApiArr).then(res => {
if (res.data.succ) {
this.$message.success('派车成功')
} else {
this.$message.error(`派车失败,${res.data.msg}`)
}
})
}
} else {
this.$message.error(`${res.data.msg}`)
}
this.confirmLoading = false
})
.catch(() => {
this.confirmLoading = false
})
}) })
// let ApiArr = []
// pkIdArr.forEach((item, index) => {
// TaskManageTruckGetInfoByTaskId({ taskPkId: item })
// .then(res => {
// if (res.data.succ) {
// ApiArr.push(res.data.ext.pK_ID)
// if (index + 1 == pkIdArr.length) {
// TaskManageTruckSendDispatchBatch(ApiArr).then(res => {
// if (res.data.succ) {
// this.$message.success('')
// } else {
// this.$message.error(`,${res.data.msg}`)
// }
// })
// }
// } else {
// this.$message.error(`${res.data.msg}`)
// }
// this.confirmLoading = false
// })
// .catch(() => {
// this.confirmLoading = false
// })
// })
}, },
CancelSendCar() { CancelSendCar() {
const select = this.$refs.xGrid.getCheckboxRecords() const select = this.$refs.xGrid.getCheckboxRecords()
@ -721,30 +728,36 @@ export default {
this.$message.error('请选择数据') this.$message.error('请选择数据')
return false return false
} }
let ApiArr = [] TaskManageTruckCancelDispatchBatchByTask(pkIdArr).then(res => {
pkIdArr.forEach((item, index) => { if (res.data.succ) {
TaskManageTruckGetInfoByTaskId({ taskPkId: item }) this.$message.success('取消派车成功')
.then(res => { } else {
if (res.data.succ) { this.$message.error(`取消派车失败,${res.data.msg}`)
ApiArr.push(res.data.ext.pK_ID) }
if (index + 1 == pkIdArr.length) {
TaskManageTruckCancelDispatchBatch(ApiArr).then(res => {
if (res.data.succ) {
this.$message.success('派车成功')
} else {
this.$message.error(`派车失败,${res.data.msg}`)
}
})
}
} else {
this.$message.error(`${res.data.msg}`)
}
this.confirmLoading = false
})
.catch(() => {
this.confirmLoading = false
})
}) })
// pkIdArr.forEach((item, index) => {
// TaskManageTruckGetInfoByTaskId({ taskPkId: item })
// .then(res => {
// if (res.data.succ) {
// ApiArr.push(res.data.ext.pK_ID)
// if (index + 1 == pkIdArr.length) {
// TaskManageTruckCancelDispatchBatch(ApiArr).then(res => {
// if (res.data.succ) {
// this.$message.success('')
// } else {
// this.$message.error(`,${res.data.msg}`)
// }
// })
// }
// } else {
// this.$message.error(`${res.data.msg}`)
// }
// this.confirmLoading = false
// })
// .catch(() => {
// this.confirmLoading = false
// })
// })
}, },
onSelect(selectedKeys, info) { onSelect(selectedKeys, info) {
console.log('selected', selectedKeys, info) console.log('selected', selectedKeys, info)

Loading…
Cancel
Save