预验收 寄售库存查询

prod
wangwei 2 years ago
parent c552f012d2
commit a99e5923ac

@ -339,6 +339,11 @@ export default {
findAllInvByUser(query)
.then((response) => {
this.invList = response.data || [];
for(var i=0;i< this.invList.length;i++){
if(this.invList[i].advanceType == 3){
this.filterQuery.invCode=this.invList[i].code;
}
}
this.getList();
this.getSpaceList();
})
@ -452,7 +457,7 @@ export default {
}
this.findMethod();
this.getInvList();
this.getList();
//this.getList();
},
};
</script>

@ -331,6 +331,11 @@ export default {
findAllInvByUser(query)
.then((response) => {
this.invList = response.data || [];
for(var i=0;i< this.invList.length;i++){
if(this.invList[i].advanceType == 2){
this.filterQuery.invCode=this.invList[i].code;
}
}
this.getList();
this.getSpaceList();
})
@ -444,7 +449,7 @@ export default {
}
this.findMethod();
this.getInvList();
this.getList();
// this.getList();
},
};
</script>

Loading…
Cancel
Save