Browse Source

直接物料隔离数量问题

intex_20241211
张立 2 months ago
parent
commit
bab149b744
  1. 6
      src/pages/inventoryMove/coms/comMoveRecord.vue

6
src/pages/inventoryMove/coms/comMoveRecord.vue

@ -304,6 +304,7 @@
if (checkDirectoryItemExist(this.itemStatusList, itemStatus)) { if (checkDirectoryItemExist(this.itemStatusList, itemStatus)) {
this.$refs.okToHoldRecordPackRef.itemCode = result.label.itemCode this.$refs.okToHoldRecordPackRef.itemCode = result.label.itemCode
this.$refs.okToHoldRecordPackRef.batch = result.label.batch this.$refs.okToHoldRecordPackRef.batch = result.label.batch
this.$refs.okToHoldRecordPackRef.handleQty = result.label.qty
this.$refs.okToHoldRecordPackRef.uom = result.balance ? result.balance.uom : "" this.$refs.okToHoldRecordPackRef.uom = result.balance ? result.balance.uom : ""
this.getResult = result // this.getResult = result //
this.$refs.scanPopup.closeScanPopup() this.$refs.scanPopup.closeScanPopup()
@ -326,12 +327,9 @@
this.showErrorMessage('未查找到物料【' + result.label.itemCode + '】'); this.showErrorMessage('未查找到物料【' + result.label.itemCode + '】');
} }
}) })
} else { } else {
this.getScanResultAfterBatch(result, managementTypeParams) this.getScanResultAfterBatch(result, managementTypeParams)
} }
} else { } else {
if (managementTypeParams == "BY_BATCH" || managementTypeParams == "BY_QUANTITY") { if (managementTypeParams == "BY_BATCH" || managementTypeParams == "BY_QUANTITY") {

Loading…
Cancel
Save