fix:领料不合格不显示

This commit is contained in:
shijing 2025-02-07 15:19:32 +08:00
parent 37eeb45242
commit 8c7b900af0
1 changed files with 4 additions and 1 deletions

View File

@ -232,9 +232,12 @@ export default {
let that = this;
let obj = {};
obj.page = 0;
obj.state = 10;
obj.material = that.form.material;
this.$API.inm.warehouse.batch.req(obj).then((res) => {
this.batchOptions = res;
this.batchOptions = res.filter((item) => {
return item.state == 10;
});
});
},
scanClose(data){