|
@ -226,8 +226,13 @@ |
|
|
if (detail == undefined) { |
|
|
if (detail == undefined) { |
|
|
this.showErrorMessage("物料号【" + itemCode + "】不在列表中") |
|
|
this.showErrorMessage("物料号【" + itemCode + "】不在列表中") |
|
|
} else { |
|
|
} else { |
|
|
var itemDetail = detail.subList.find(r => |
|
|
var itemDetail = '' |
|
|
r.batch == batch); |
|
|
if(this.managementPrecision == 'BY_QUANTITY'){ |
|
|
|
|
|
itemDetail = detail.subList.find(r => r.itemCode == result.label.itemCode); |
|
|
|
|
|
}else{ |
|
|
|
|
|
itemDetail = detail.subList.find(r => r.batch == batch); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
if (itemDetail == undefined) { |
|
|
if (itemDetail == undefined) { |
|
|
this.showErrorMessage("批次[" + batch + "]不在任务列表中") |
|
|
this.showErrorMessage("批次[" + batch + "]不在任务列表中") |
|
|
} else { |
|
|
} else { |
|
@ -368,6 +373,7 @@ |
|
|
getManagementPrecisions(itemCodes, this.toLocationCode, res => { |
|
|
getManagementPrecisions(itemCodes, this.toLocationCode, res => { |
|
|
if (res.success) { |
|
|
if (res.success) { |
|
|
this.managementList = res.list; |
|
|
this.managementList = res.list; |
|
|
|
|
|
this.managementPrecision = this.managementList[0].ManagementPrecision |
|
|
var params = this.setParams(); |
|
|
var params = this.setParams(); |
|
|
console.log("提交参数", JSON.stringify(params)); |
|
|
console.log("提交参数", JSON.stringify(params)); |
|
|
productReceiptJobsubmit(params).then(res => { |
|
|
productReceiptJobsubmit(params).then(res => { |
|
|