|
|
|
@ -703,6 +703,7 @@ import {
|
|
|
|
|
$_getList, |
|
|
|
|
$_postBatchDelete, |
|
|
|
|
postExportContrastStockInfo, |
|
|
|
|
postExportPanDataWithPackage, |
|
|
|
|
postSyncTaskData, |
|
|
|
|
getAllDataWithPackage, |
|
|
|
|
} from '@/api/distribution/createTask'; |
|
|
|
@ -2683,11 +2684,25 @@ const handleUncountedExport = () => {
|
|
|
|
|
async () => { |
|
|
|
|
try { |
|
|
|
|
TcPdloading.value = true; |
|
|
|
|
const res = await postExportContrastStockInfo({ |
|
|
|
|
questNum: UncountedDetails.value.questNum, |
|
|
|
|
// InventoryState true是未盘 false是已盘 |
|
|
|
|
questStatus: InventoryState.value ? 0 : 1, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const res = InventoryState.value |
|
|
|
|
? // 未盘 |
|
|
|
|
await postExportContrastStockInfo({ |
|
|
|
|
questNum: UncountedDetails.value.questNum, |
|
|
|
|
// InventoryState true是未盘 false是已盘 |
|
|
|
|
questStatus: InventoryState.value ? 0 : 1, |
|
|
|
|
}) |
|
|
|
|
: // 已盘 |
|
|
|
|
await postExportPanDataWithPackage({ |
|
|
|
|
questNum: UncountedDetails.value.questNum, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// const res = await postExportContrastStockInfo({ |
|
|
|
|
// questNum: UncountedDetails.value.questNum, |
|
|
|
|
// // InventoryState true是未盘 false是已盘 |
|
|
|
|
// questStatus: InventoryState.value ? 0 : 1, |
|
|
|
|
// }); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
if (res.status !== 200) return; |
|
|
|
|
|
|
|
|
|
downloadXls(res.data, `${InventoryState.value ? '未盘点' : '已盘点'}数据.xlsx`); |
|
|
|
|