Commit 787faa7c by 夏超

[fix] 修改优先级筛选

parent e9f8bb7e
......@@ -2602,7 +2602,11 @@
// })
// } else {
// 选中且该物料在产品bom中
this.selmaterialList.push(JSON.parse(JSON.stringify(data)));
//选中时复制product_name和product_code
let obj = JSON.parse(JSON.stringify(data));
obj.product_name = data.name;
obj.product_code = data.code;
this.selmaterialList.push(obj);
// }
} else {
// 取消选中 把选中列表中的这条数据删除掉
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment