|
|
@ -555,6 +555,7 @@ |
|
|
|
v-if="!QuantityEntryStatus" |
|
|
|
v-if="!QuantityEntryStatus" |
|
|
|
size="small" |
|
|
|
size="small" |
|
|
|
v-model="scope.row.number" |
|
|
|
v-model="scope.row.number" |
|
|
|
|
|
|
|
:value-on-clear="0" |
|
|
|
@change="isZeroNumber(scope.row)" |
|
|
|
@change="isZeroNumber(scope.row)" |
|
|
|
/> |
|
|
|
/> |
|
|
|
<el-input-number |
|
|
|
<el-input-number |
|
|
@ -564,6 +565,7 @@ |
|
|
|
:min="0" |
|
|
|
:min="0" |
|
|
|
v-model="scope.row.reservationNum" |
|
|
|
v-model="scope.row.reservationNum" |
|
|
|
@change="isZeroNumber(scope.row)" |
|
|
|
@change="isZeroNumber(scope.row)" |
|
|
|
|
|
|
|
:value-on-clear="0" |
|
|
|
/> |
|
|
|
/> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
@ -1375,6 +1377,9 @@ const submit = () => { |
|
|
|
|
|
|
|
|
|
|
|
// 展示的信息 |
|
|
|
// 展示的信息 |
|
|
|
dataInfo.value = removeDuplicates(dataInfo.value); |
|
|
|
dataInfo.value = removeDuplicates(dataInfo.value); |
|
|
|
|
|
|
|
dataInfo.value.forEach(item=>{ |
|
|
|
|
|
|
|
item.Plannedquantity = item.reservationNum |
|
|
|
|
|
|
|
}) |
|
|
|
console.log(dataInfo.value, ' dataInfo.value'); |
|
|
|
console.log(dataInfo.value, ' dataInfo.value'); |
|
|
|
|
|
|
|
|
|
|
|
// 计算总数 |
|
|
|
// 计算总数 |
|
|
@ -1532,7 +1537,7 @@ const MaxSUM = computed(() => { |
|
|
|
// let max = dataInfo.value[dataId.value].handQuantity - sum; |
|
|
|
// let max = dataInfo.value[dataId.value].handQuantity - sum; |
|
|
|
console.log(dataId.value, 'dataId.value'); |
|
|
|
console.log(dataId.value, 'dataId.value'); |
|
|
|
console.log(dataInfo.value, ' dataInfo.value['); |
|
|
|
console.log(dataInfo.value, ' dataInfo.value['); |
|
|
|
let max = dataInfo.value[dataId.value].reservationNum; |
|
|
|
let max = dataInfo.value[dataId.value].Plannedquantity; |
|
|
|
return max; |
|
|
|
return max; |
|
|
|
}); |
|
|
|
}); |
|
|
|
const toggleSelection = options => { |
|
|
|
const toggleSelection = options => { |
|
|
@ -1713,7 +1718,6 @@ const Entering = val => { |
|
|
|
// 数量录入 |
|
|
|
// 数量录入 |
|
|
|
const QuantityEntry = async val => { |
|
|
|
const QuantityEntry = async val => { |
|
|
|
console.log(dataInfo.value, 'dataInfo.value'); |
|
|
|
console.log(dataInfo.value, 'dataInfo.value'); |
|
|
|
|
|
|
|
|
|
|
|
dataId.value = findIndexById(val.id); //记录当前点击的订单 |
|
|
|
dataId.value = findIndexById(val.id); //记录当前点击的订单 |
|
|
|
editLoading.value = true; |
|
|
|
editLoading.value = true; |
|
|
|
// 编辑状态 |
|
|
|
// 编辑状态 |
|
|
|