解决bug:采购入库选择采购订单,会显示已经超额完成入库的商品明细行

This commit is contained in:
jishenghua 2024-05-06 23:58:26 +08:00
parent b60cbd3a26
commit 35b2d1cc8b

View File

@ -342,8 +342,8 @@
let listEx = []
for(let j=0; j<list.length; j++){
let info = list[j];
if(info.preNumber !== info.finishNumber) {
//去掉已经全部转换的明细
if(info.finishNumber < info.preNumber) {
//去掉已经全部转换的明细只加载未转换完的明细
listEx.push(info)
} else {
if(this.queryParam.subType === '采购' || this.queryParam.subType === '销售' || this.queryParam.subType === '零售') {