|
@ -211,6 +211,7 @@ |
|
|
result.uom = item.uom; |
|
|
result.uom = item.uom; |
|
|
if (item.subList.length > 0) { |
|
|
if (item.subList.length > 0) { |
|
|
let subItem = item.subList[0]; |
|
|
let subItem = item.subList[0]; |
|
|
|
|
|
subItem.scaned=true; |
|
|
if (subItem.fgList == undefined) { |
|
|
if (subItem.fgList == undefined) { |
|
|
subItem.fgList = []; |
|
|
subItem.fgList = []; |
|
|
} |
|
|
} |
|
@ -365,7 +366,6 @@ |
|
|
setParams() { |
|
|
setParams() { |
|
|
var subList = [] |
|
|
var subList = [] |
|
|
var creator = this.$store.state.user.id |
|
|
var creator = this.$store.state.user.id |
|
|
|
|
|
|
|
|
this.detailSource.forEach(item => { |
|
|
this.detailSource.forEach(item => { |
|
|
item.subList.forEach(detail => { |
|
|
item.subList.forEach(detail => { |
|
|
if (detail.scaned) { |
|
|
if (detail.scaned) { |
|
@ -376,6 +376,13 @@ |
|
|
detail.toContainerNumber = ''; |
|
|
detail.toContainerNumber = ''; |
|
|
detail.toInventoryStatus = detail.inventoryStatus |
|
|
detail.toInventoryStatus = detail.inventoryStatus |
|
|
detail.toLocationCode = this.toLocationCode |
|
|
detail.toLocationCode = this.toLocationCode |
|
|
|
|
|
if(detail.fgList){ |
|
|
|
|
|
detail.fgList.forEach(res=>{ |
|
|
|
|
|
res.outsideItemCode =res.itemCode |
|
|
|
|
|
res.outsideProduceDate = res.productDate |
|
|
|
|
|
res.outsideSerialNumber =res.order |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
subList.push(detail) |
|
|
subList.push(detail) |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
@ -429,7 +436,7 @@ |
|
|
showQuestionMessage(hint,callback){ |
|
|
showQuestionMessage(hint,callback){ |
|
|
this.$refs.comMessage.showQuestionMessage(hint, res => { |
|
|
this.$refs.comMessage.showQuestionMessage(hint, res => { |
|
|
if (res) { |
|
|
if (res) { |
|
|
callback() |
|
|
callback(true) |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|