|
@ -158,8 +158,6 @@ |
|
|
this.scanOptions = getDetailEditRemoveOption(); |
|
|
this.scanOptions = getDetailEditRemoveOption(); |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
openScanPopup(content, jobcontent) { |
|
|
openScanPopup(content, jobcontent) { |
|
|
this.issueRecord = []; |
|
|
this.issueRecord = []; |
|
|
this.dataContent = content; |
|
|
this.dataContent = content; |
|
@ -327,7 +325,7 @@ |
|
|
this.showQuestionMessage('在【' + that.fromLocationCode + '】库位下,未查找到批次【' + lot + |
|
|
this.showQuestionMessage('在【' + that.fromLocationCode + '】库位下,未查找到批次【' + lot + |
|
|
'】的发料明细,是否要继续发料?', res => { |
|
|
'】的发料明细,是否要继续发料?', res => { |
|
|
if (res) { |
|
|
if (res) { |
|
|
let batch = that.createBatchInfo(label, balance); |
|
|
let batch = that.createBatchInfo(label, balance,packageInfo); |
|
|
fromLocation.Batchs.unshift(batch); |
|
|
fromLocation.Batchs.unshift(batch); |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
@ -354,15 +352,15 @@ |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
createBatchInfo(data, balance) { |
|
|
createBatchInfo(data, balance,packageInfo) { |
|
|
let batch = { |
|
|
let batch = { |
|
|
batch: data.lot, |
|
|
batch: data.batch, |
|
|
qty: 0, |
|
|
qty: 0, |
|
|
uom: data.uom, |
|
|
uom: data.uom, |
|
|
handleQty: Number(data.qty), |
|
|
handleQty: Number(data.qty), |
|
|
Records: [] |
|
|
Records: [] |
|
|
} |
|
|
} |
|
|
let record = this.creatRecord(data, balance); |
|
|
let record = this.creatRecord(data, balance,packageInfo); |
|
|
batch.Records.push(record); |
|
|
batch.Records.push(record); |
|
|
this.issueRecord.unshift(record) |
|
|
this.issueRecord.unshift(record) |
|
|
return batch; |
|
|
return batch; |
|
|