预验收 寄售库存查询

prod
wangwei 2 years ago
parent c552f012d2
commit a99e5923ac

@ -339,6 +339,11 @@ export default {
findAllInvByUser(query) findAllInvByUser(query)
.then((response) => { .then((response) => {
this.invList = response.data || []; 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.getList();
this.getSpaceList(); this.getSpaceList();
}) })
@ -452,7 +457,7 @@ export default {
} }
this.findMethod(); this.findMethod();
this.getInvList(); this.getInvList();
this.getList(); //this.getList();
}, },
}; };
</script> </script>

@ -331,6 +331,11 @@ export default {
findAllInvByUser(query) findAllInvByUser(query)
.then((response) => { .then((response) => {
this.invList = response.data || []; 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.getList();
this.getSpaceList(); this.getSpaceList();
}) })
@ -444,7 +449,7 @@ export default {
} }
this.findMethod(); this.findMethod();
this.getInvList(); this.getInvList();
this.getList(); // this.getList();
}, },
}; };
</script> </script>

Loading…
Cancel
Save