|
|
|
@ -108,7 +108,10 @@
|
|
|
|
|
|
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<el-text |
|
|
|
|
v-if="Number(slotProps.scope.row.abnormalStatus) === 0" |
|
|
|
|
v-if=" |
|
|
|
|
Number(slotProps.scope.row.abnormalStatus) === 0 && |
|
|
|
|
[1, 4].includes(Number(slotProps.scope.row.abnormalType)) |
|
|
|
|
" |
|
|
|
|
@click="handleAnException(slotProps.scope)" |
|
|
|
|
> |
|
|
|
|
处理 |
|
|
|
@ -145,15 +148,34 @@
|
|
|
|
|
:align-center="true" |
|
|
|
|
v-model="details.popUpShow.abnormalVisited" |
|
|
|
|
> |
|
|
|
|
<div class="flex-c-c fwb"> |
|
|
|
|
包条码 ({{ details.abnormalInfo.orderPackageCode }}) 无系统编号 |
|
|
|
|
</div> |
|
|
|
|
<div class="flex-c-c fwb">包条码 ({{ details.abnormalInfo.orderPackageCode }})</div> |
|
|
|
|
<div class="flex-c-c mt20"> |
|
|
|
|
<el-button @click="details.popUpShow.abnormalVisited = false">取 消</el-button> |
|
|
|
|
<el-button type="primary" icon="Delete" @click="handleDeleteOrder">无效包条</el-button> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleSynchronization"> |
|
|
|
|
同步数据 |
|
|
|
|
</el-button> |
|
|
|
|
<!-- 系统无编码 --> |
|
|
|
|
<template v-if="Number(details.abnormalInfo.abnormalType) === 1"> |
|
|
|
|
<el-button type="primary" icon="Delete" @click="() => handleAbnormal(1, '确认为无效包条')"> |
|
|
|
|
无效包条 |
|
|
|
|
</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
icon="el-icon-search" |
|
|
|
|
@click="() => handleAbnormal(2, '确认同步数据')" |
|
|
|
|
> |
|
|
|
|
同步数据 |
|
|
|
|
</el-button> |
|
|
|
|
</template> |
|
|
|
|
<!-- 无卸车记录 --> |
|
|
|
|
<template v-else-if="Number(details.abnormalInfo.abnormalType) === 3"> |
|
|
|
|
<el-button type="primary" icon="Delete" @click="() => handleAbnormal(3, '确认为本车次少货')" |
|
|
|
|
>本车次少货</el-button |
|
|
|
|
> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
icon="el-icon-search" |
|
|
|
|
@click="() => handleAbnormal(4, '确认为已入库')" |
|
|
|
|
> |
|
|
|
|
已入库 |
|
|
|
|
</el-button> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
@ -416,38 +438,9 @@ const handleAnException = ({ row }) => {
|
|
|
|
|
details.popUpShow.abnormalVisited = true; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 删除包条 */ |
|
|
|
|
const handleDeleteOrder = () => { |
|
|
|
|
ElMessageBox.confirm('是否删除该条数据?', '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(async () => { |
|
|
|
|
details.popUpShow.abnormalVisited = false; |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
const submitData = { abnormalRecordId: details.abnormalInfo.id, dealType: 1 }; |
|
|
|
|
const res = await postDealAbnormal(submitData); |
|
|
|
|
|
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
|
|
|
|
|
ElMessage.success(msg); |
|
|
|
|
details.page.pageNum = 1; |
|
|
|
|
onLoad(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 数据同步 */ |
|
|
|
|
const handleSynchronization = () => { |
|
|
|
|
ElMessageBox.confirm('是否数据同步?', '提示', { |
|
|
|
|
/** 处理 */ |
|
|
|
|
const handleAbnormal = (dealType, title) => { |
|
|
|
|
ElMessageBox.confirm(title, '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
@ -456,7 +449,7 @@ const handleSynchronization = () => {
|
|
|
|
|
details.popUpShow.abnormalVisited = false; |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
const submitData = { abnormalRecordId: details.abnormalInfo.id, dealType: 2 }; |
|
|
|
|
const submitData = { abnormalRecordId: details.abnormalInfo.id, dealType }; |
|
|
|
|
const res = await postDealAbnormal(submitData); |
|
|
|
|
|
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|