fix:玻纤输入物料扫码优化(批次也用batch情况)

This commit is contained in:
shijing 2025-03-12 14:24:04 +08:00
parent 94a15d41ed
commit f0b31ffadf
1 changed files with 49 additions and 33 deletions

View File

@ -231,6 +231,20 @@ export default {
that.$message.error("批次号不存在");
});
}else{
if(that.tracking==10){//
arr = that.materialOptions.filter((item) => {
return item.batch == code;
})
if (arr.length > 0) {
that.form.batch = arr[0].batch;
that.form.wm_in = arr[0].id;
that.form.count_use = arr[0].count;
that.wm_in = arr[0].batch;
}else{
that.wm_in = '';
that.$message.error("批次号不存在");
}
}else{//
that.$API.wpm.wpr.list.req({number:code,page:0}).then((res) => {
if(res.length>0){
let bwitem = {};
@ -267,6 +281,8 @@ export default {
})
}
}
},
//
submit() {