|
|
|
@ -175,11 +175,12 @@
|
|
|
|
|
:visible.sync="details.popUpShow.QRCodeVisible" |
|
|
|
|
width="780px" |
|
|
|
|
v-model="details.popUpShow.QRCodeVisible" |
|
|
|
|
:align-center="true" |
|
|
|
|
> |
|
|
|
|
<div class="el-dialog-QRCode-container"> |
|
|
|
|
<div v-html="details.html"></div> |
|
|
|
|
</div> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<span slot="footer" class="dialog-footer flex-c-c mt10"> |
|
|
|
|
<!-- <el-button type="primary" @click="ddd">导 出</el-button>--> |
|
|
|
|
<el-button type="primary" @click="printTemplate">打 印</el-button> |
|
|
|
|
<el-button @click="details.popUpShow.QRCodeVisible = false">取 消</el-button> |
|
|
|
@ -659,12 +660,15 @@ const handleBatchUnLoad = async () => {
|
|
|
|
|
if (details.selectionList.length === 0) return ElMessage.warning('请选择需要卸车的数据'); |
|
|
|
|
|
|
|
|
|
if (details.pageInfo.type !== 'TripartiteTransfer') { |
|
|
|
|
if (!details.myWarehouseData) details.myWarehouseData = await getMyCurrentWarehouse(); |
|
|
|
|
if (!details.myWarehouseData) { |
|
|
|
|
const res = await getMyCurrentWarehouse(); |
|
|
|
|
details.myWarehouseData = res.data.data; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!details.myWarehouseData) return ElMessage.warning('请先选择一个仓库'); |
|
|
|
|
|
|
|
|
|
// 当前登录人的仓库Id |
|
|
|
|
const myWarehouseId = details.myWarehouseData.warehouseId; |
|
|
|
|
const myWarehouseId = details.myWarehouseData.id; |
|
|
|
|
|
|
|
|
|
// 包件列表 |
|
|
|
|
const _orderArr = []; |
|
|
|
@ -689,7 +693,7 @@ const handleBatchUnLoad = async () => {
|
|
|
|
|
|
|
|
|
|
// 不重复判断是否有异常 |
|
|
|
|
if (!isHaveAbnormalData) { |
|
|
|
|
isHaveAbnormalData = iterator.warehouseId === myWarehouseId; |
|
|
|
|
isHaveAbnormalData = iterator.finalNodeId !== myWarehouseId; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -697,19 +701,36 @@ const handleBatchUnLoad = async () => {
|
|
|
|
|
if ([..._zeroArr, ..._orderArr].length === 0) return ElMessage.warning('没有符合要求的数据'); |
|
|
|
|
|
|
|
|
|
// 判断是否含有异常 |
|
|
|
|
if (isHaveAbnormalData) { |
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
unloadPackageList: _orderArr, |
|
|
|
|
unloadZeroList: _zeroArr, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postBatchUnload(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
if (!isHaveAbnormalData) { |
|
|
|
|
ElMessageBox.confirm('是否卸车', '提示', { |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
center: true, |
|
|
|
|
}) |
|
|
|
|
// 异常提交 |
|
|
|
|
.then(async () => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
unloadPackageList: _orderArr, |
|
|
|
|
unloadZeroList: _zeroArr, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postBatchUnload(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -752,8 +773,8 @@ const handleBatchUnLoad = async () => {
|
|
|
|
|
|
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
unloadPackageList: _orderArr.filter(val => val.warehouseId === myWarehouseId), |
|
|
|
|
unloadZeroList: _zeroArr.filter(val => val.warehouseId === myWarehouseId), |
|
|
|
|
unloadPackageList: _orderArr.filter(val => val.finalNodeId === myWarehouseId), |
|
|
|
|
unloadZeroList: _zeroArr.filter(val => val.finalNodeId === myWarehouseId), |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postBatchUnload(submitData); |
|
|
|
@ -817,90 +838,124 @@ const handleBatchUnLoad = async () => {
|
|
|
|
|
|
|
|
|
|
/** 卸车 -- 订单 */ |
|
|
|
|
const handleOrderUnLoad = async ({ row }) => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
if (details.pageInfo.type !== 'TripartiteTransfer') { |
|
|
|
|
if (!details.myWarehouseData) { |
|
|
|
|
const res = await getMyCurrentWarehouse(); |
|
|
|
|
details.myWarehouseData = res.data.data; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (details.pageInfo.type !== 'TripartiteTransfer') { |
|
|
|
|
if (!details.myWarehouseData) details.myWarehouseData = await getMyCurrentWarehouse(); |
|
|
|
|
if (!details.myWarehouseData) return ElMessage.warning('请先选择一个仓库'); |
|
|
|
|
|
|
|
|
|
if (!details.myWarehouseData) return ElMessage.warning('请先选择一个仓库'); |
|
|
|
|
// 当前登录人的仓库Id |
|
|
|
|
const myWarehouseId = details.myWarehouseData.id; |
|
|
|
|
|
|
|
|
|
// 当前登录人的仓库Id |
|
|
|
|
const myWarehouseId = details.myWarehouseData.warehouseId; |
|
|
|
|
|
|
|
|
|
if (row.warehouseId !== myWarehouseId) |
|
|
|
|
return ( |
|
|
|
|
ElMessageBox.confirm('包含已卸车数据或计划不在本节点卸车的数据', '异常提交', { |
|
|
|
|
confirmButtonText: '提交包含不在本节点数据', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
center: true, |
|
|
|
|
console.log('details.myWarehouseData :>> ', details.myWarehouseData); |
|
|
|
|
console.log('row.finalNodeId !== myWarehouseId :>> ', row); |
|
|
|
|
console.log('myWarehouseId :>> ', myWarehouseId); |
|
|
|
|
|
|
|
|
|
if (row.finalNodeId !== myWarehouseId) |
|
|
|
|
return ( |
|
|
|
|
ElMessageBox.confirm('包含已卸车数据或计划不在本节点卸车的数据', '异常提交', { |
|
|
|
|
confirmButtonText: '提交包含不在本节点数据', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
center: true, |
|
|
|
|
}) |
|
|
|
|
// 异常提交 |
|
|
|
|
.then(async () => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
unloadPackageList: [{ orderPackageCode: row.scanCode }], |
|
|
|
|
unloadZeroList: [], |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postBatchUnload(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
// 异常提交 |
|
|
|
|
.then(async () => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
unloadPackageList: [{ orderPackageCode: row.scanCode }], |
|
|
|
|
unloadZeroList: [], |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postBatchUnload(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
); |
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
unloadPackageList: [{ orderPackageCode: row.scanCode }], |
|
|
|
|
unloadZeroList: [], |
|
|
|
|
}; |
|
|
|
|
.catch(() => {}) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
ElMessageBox.confirm('是否卸车', '提示', { |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
center: true, |
|
|
|
|
}).then(async () => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
const res = await postBatchUnload(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
unloadPackageList: [{ orderPackageCode: row.scanCode }], |
|
|
|
|
unloadZeroList: [], |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
} else { |
|
|
|
|
// 三方中转 |
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
orderPackageCode: row.scanCode, |
|
|
|
|
}; |
|
|
|
|
const res = await postBatchUnload(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
|
|
const res = await postTransferUnloadPackage(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
// 三方中转 |
|
|
|
|
ElMessageBox.confirm('是否卸车', '提示', { |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
center: true, |
|
|
|
|
}).then(async () => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.pageInfo.loadId, |
|
|
|
|
orderPackageCode: row.scanCode, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postTransferUnloadPackage(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success('卸车成功'); |
|
|
|
|
onLoad(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 卸车 -- 零担 */ |
|
|
|
|
const handleZeroUnLoad = async ({ row }) => { |
|
|
|
|
if (details.pageInfo.type !== 'TripartiteTransfer') { |
|
|
|
|
if (!details.myWarehouseData) details.myWarehouseData = await getMyCurrentWarehouse(); |
|
|
|
|
if (!details.myWarehouseData) { |
|
|
|
|
const res = await getMyCurrentWarehouse(); |
|
|
|
|
details.myWarehouseData = res.data.data; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!details.myWarehouseData) return ElMessage.warning('请先选择一个仓库'); |
|
|
|
|
|
|
|
|
|
if (details.myWarehouseData.warehouseId !== row.warehouseId) |
|
|
|
|
if (details.myWarehouseData.id !== row.finalNodeId) |
|
|
|
|
return ElMessage.warning('未在目的仓, 无法卸车'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1163,9 +1218,4 @@ watch(
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog-QRCode-container { |
|
|
|
|
max-height: 80vh; |
|
|
|
|
overflow-y: scroll; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|