|
|
|
@ -214,6 +214,7 @@
|
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
|
|
|
|
|
<!-- <el-text--> |
|
|
|
|
<!-- v-if="inventoryShow"--> |
|
|
|
|
<!-- type="primary"--> |
|
|
|
@ -2461,21 +2462,41 @@
|
|
|
|
|
let inventoryIds = []; |
|
|
|
|
let inventoryList = []; |
|
|
|
|
let stockArticleList = []; |
|
|
|
|
// let operation = true; |
|
|
|
|
// this.inventoryData.forEach(item => { |
|
|
|
|
// if (Number(item.reservationNum) === 0 || item.reservationNum > item.quantityStock) { |
|
|
|
|
// this.$message({ |
|
|
|
|
// type: 'warning', |
|
|
|
|
// message: '存在无效的预约数量', |
|
|
|
|
// }); |
|
|
|
|
// operation = false; |
|
|
|
|
// return; |
|
|
|
|
// } |
|
|
|
|
// item.reservationNum = item.reservationNum; |
|
|
|
|
// inventoryIds.push(item.id); |
|
|
|
|
// inventoryList.push(item); |
|
|
|
|
// }); |
|
|
|
|
// if(!operation){ |
|
|
|
|
// return |
|
|
|
|
// } |
|
|
|
|
let operation = true; |
|
|
|
|
this.inventoryData.forEach(item => { |
|
|
|
|
for (let i = 0; i < this.inventoryData.length; i++) { |
|
|
|
|
const item = this.inventoryData[i]; |
|
|
|
|
if (Number(item.reservationNum) === 0 || item.reservationNum > item.quantityStock) { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '存在无效的预约数量', |
|
|
|
|
}); |
|
|
|
|
operation = false; |
|
|
|
|
return; |
|
|
|
|
break; // 立即跳出循环 |
|
|
|
|
} |
|
|
|
|
item.reservationNum = item.reservationNum; |
|
|
|
|
inventoryIds.push(item.id); |
|
|
|
|
inventoryList.push(item); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!operation) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
orderIds.join(','); |
|
|
|
|
inventoryIds.join(','); |
|
|
|
|
this.form.stockArticleIds = orderIds.toString(); |
|
|
|
|