解决bug:采购入库选择采购订单,会显示已经超额完成入库的商品明细行
This commit is contained in:
@@ -342,8 +342,8 @@
|
|||||||
let listEx = []
|
let listEx = []
|
||||||
for(let j=0; j<list.length; j++){
|
for(let j=0; j<list.length; j++){
|
||||||
let info = list[j];
|
let info = list[j];
|
||||||
if(info.preNumber !== info.finishNumber) {
|
if(info.finishNumber < info.preNumber) {
|
||||||
//去掉已经全部转换的明细
|
//去掉已经全部转换的明细,只加载未转换完的明细
|
||||||
listEx.push(info)
|
listEx.push(info)
|
||||||
} else {
|
} else {
|
||||||
if(this.queryParam.subType === '采购' || this.queryParam.subType === '销售' || this.queryParam.subType === '零售') {
|
if(this.queryParam.subType === '采购' || this.queryParam.subType === '销售' || this.queryParam.subType === '零售') {
|
||||||
|
|||||||
Reference in New Issue
Block a user