fix:入库新增混料修改

This commit is contained in:
zhouz
2025-07-23 19:44:37 +08:00
parent 3fa1f5112d
commit 4b5dca3346
2 changed files with 30 additions and 4 deletions

View File

@@ -313,7 +313,7 @@ export default {
rows.forEach((item) => {
let same_mater = true
this.form.tableData.forEach((row) => {
if (row.pcsn === item.pcsn && row.material_id === item.material_id) {
if (row.pcsn === item.pcsn && row.material_id === item.material_id && row.storagevehicle_code === item.storagevehicle_code) {
same_mater = false
}
})