Browse Source

修改发料、补料扫描不是推荐批次

wms3.0_pda
lijuncheng 1 year ago
parent
commit
478c6aea49
  1. 2
      pages/deliver/record/deliverRecord.vue
  2. 6
      pages/issue/coms/comScanIssuePack.vue
  3. 9
      pages/issue/job/issueDetail.vue
  4. 5
      pages/repleinsh/coms/comScanReplishPack.vue
  5. 85
      pages/repleinsh/job/repleinshDetail.vue

2
pages/deliver/record/deliverRecord.vue

@ -121,7 +121,7 @@
}, },
onLoad(option) { onLoad(option) {
var typeCode = "DeliverRecord" var typeCode = "Deliver"
getBusinessType(typeCode, res => { getBusinessType(typeCode, res => {
if (res.success) { if (res.success) {
this.businessType = res.businessType; this.businessType = res.businessType;

6
pages/issue/coms/comScanIssuePack.vue

@ -321,11 +321,15 @@
) )
} }
} else { } else {
if (this.jobContent.AllowModifyBatch == null) { if (this.jobContent.allowModifyBatch == "TRUE") {
this.showQuestionMessage('在【' + that.fromLocationCode + '】库位下,未查找到批次【' + lot + this.showQuestionMessage('在【' + that.fromLocationCode + '】库位下,未查找到批次【' + lot +
'】的发料明细,是否要继续发料?', res => { '】的发料明细,是否要继续发料?', res => {
if (res) { if (res) {
let batch = that.createBatchInfo(label, balance,packageInfo); let batch = that.createBatchInfo(label, balance,packageInfo);
//details
if(fromLocation.Batchs.length>0){
batch.detail = fromLocation.Batchs[0].detail;
}
fromLocation.Batchs.unshift(batch); fromLocation.Batchs.unshift(batch);
} }
}) })

9
pages/issue/job/issueDetail.vue

@ -277,7 +277,7 @@
}, },
setParams() { setParams() {
var subList = [] var commitSubList = []
var createTime = getCurrDateTime(); var createTime = getCurrDateTime();
var creator = this.$store.state.user.id var creator = this.$store.state.user.id
this.detailSource.forEach(toLocationCode => { this.detailSource.forEach(toLocationCode => {
@ -286,8 +286,8 @@
fromLocation.Batchs.forEach(batch => { fromLocation.Batchs.forEach(batch => {
let subItem = batch.detail; let subItem = batch.detail;
if(subItem!=undefined){ if(subItem!=undefined){
subItem.recordList = [];
if (batch.Records.length > 0) { if (batch.Records.length > 0) {
subItem.recordList = [];
batch.Records.forEach(r => { batch.Records.forEach(r => {
let record = {}; let record = {};
record.handleQty = r.qty; record.handleQty = r.qty;
@ -324,15 +324,14 @@
} }
subItem.recordList.push(record); subItem.recordList.push(record);
}) })
subList.push(subItem); commitSubList.push(subItem);
} }
} }
}) })
}) })
}) })
}) })
this.jobContent.subList = commitSubList
this.jobContent.subList = subList
this.jobContent.createTime = createTime; this.jobContent.createTime = createTime;
this.jobContent.creator = creator; this.jobContent.creator = creator;
return this.jobContent; return this.jobContent;

5
pages/repleinsh/coms/comScanReplishPack.vue

@ -317,11 +317,14 @@
) )
} }
} else { } else {
if (this.jobContent.AllowModifyBatch == null) { if (this.jobContent.allowModifyBatch == "TRUE") {
this.showQuestionMessage('在【' + that.fromLocationCode + '】库位下,未查找到批次【' + lot + this.showQuestionMessage('在【' + that.fromLocationCode + '】库位下,未查找到批次【' + lot +
'】的发料明细,是否要继续发料?', res => { '】的发料明细,是否要继续发料?', res => {
if (res) { if (res) {
let batch = that.createBatchInfo(label, balance,packageInfo); let batch = that.createBatchInfo(label, balance,packageInfo);
if(fromLocation.Batchs.length>0){
batch.detail = fromLocation.Batchs[0].detail;
}
fromLocation.Batchs.unshift(batch); fromLocation.Batchs.unshift(batch);
} }
}) })

85
pages/repleinsh/job/repleinshDetail.vue

@ -252,7 +252,7 @@
}, },
setParams() { setParams() {
var subList = [] var commitSubList = []
var createTime = getCurrDateTime(); var createTime = getCurrDateTime();
var creator = this.$store.state.user.id var creator = this.$store.state.user.id
this.detailSource.forEach(toLocationCode => { this.detailSource.forEach(toLocationCode => {
@ -260,52 +260,57 @@
item.Locations.forEach(fromLocation => { item.Locations.forEach(fromLocation => {
fromLocation.Batchs.forEach(batch => { fromLocation.Batchs.forEach(batch => {
let subItem = batch.detail; let subItem = batch.detail;
subItem.recordList = [];
if (batch.Records.length > 0) { if (subItem != undefined) {
batch.Records.forEach(r => { if (batch.Records.length > 0) {
let record = {}; subItem.recordList = [];
record.handleQty = r.qty; batch.Records.forEach(r => {
let record = {};
record.fromPackingNumber = r record.handleQty = r.qty;
.packingNumber;
record.fromBatch = r.batch; record.fromPackingNumber = r
record.fromContainerNumber = r
.ContainerNumber;
record.toContainerNumber = r
.ContainerNumber;
record.toInventoryStatus = r
.inventoryStatus;
record.toLocationCode = this
.toLocationCode;
record.supplierCode = r.supplierCode;
//使
if (this.jobContent.useOnTheWayLocation ==
'TRUE') {
record.toPackingNumber = r
.packingNumber;
record.toBatch = r.batch;
} else {
var info = getPackingNumberAndBatch(
this.managementList, r
.itemCode,
r.packingNumber, r
.batch);
record.toPackingNumber = info
.packingNumber; .packingNumber;
record.toBatch = info.batch; record.fromBatch = r.batch;
} record.fromContainerNumber = r
subItem.recordList.push(record); .ContainerNumber;
})
subList.push(subItem); record.toContainerNumber = r
.ContainerNumber;
record.toInventoryStatus = r
.inventoryStatus;
record.toLocationCode = this
.toLocationCode;
record.supplierCode = r.supplierCode;
//使
if (this.jobContent
.useOnTheWayLocation ==
'TRUE') {
record.toPackingNumber = r
.packingNumber;
record.toBatch = r.batch;
} else {
var info =
getPackingNumberAndBatch(
this.managementList, r
.itemCode,
r.packingNumber, r
.batch);
record.toPackingNumber = info
.packingNumber;
record.toBatch = info.batch;
}
subItem.recordList.push(record);
})
commitSubList.push(subItem);
}
} }
}) })
}) })
}) })
}) })
this.jobContent.subList = subList this.jobContent.subList = commitSubList
this.jobContent.createTime = createTime; this.jobContent.createTime = createTime;
this.jobContent.creator = creator; this.jobContent.creator = creator;
return this.jobContent; return this.jobContent;

Loading…
Cancel
Save