Browse Source

补料记录提交

wms3.0_pda
lijuncheng 11 months ago
parent
commit
763e001172
  1. 1
      pages/issue/job/issueDetail.vue
  2. 40
      pages/repleinsh/record/repleinshRecord.vue

1
pages/issue/job/issueDetail.vue

@ -47,7 +47,6 @@
updateTitle,
navigateBack,
getRemoveOption,
getISODateTime,
getCurrDateTime,
getDirectoryItemArray,
getPackingNumberAndBatch,

40
pages/repleinsh/record/repleinshRecord.vue

@ -26,7 +26,7 @@
<view class="">
</view>
<view class=" uni-flex uni-row">
<button class="btn_single_commit" hover-class="btn_commit_after" @click="commit">提交</button>
<button class="btn_single_commit" hover-class="btn_commit_after" @click="submit">提交</button>
</view>
</view>
</view>
@ -51,7 +51,8 @@
import {
goHome,
updateTitle,
getCurrDateTime
getCurrDateTime,
getPackingNumberAndBatch
} from '@/common/basic.js';
import {
@ -322,7 +323,9 @@
},
closeScanPopup() {
this.$refs.scanPopup.closeScanPopup();
if(this.$refs.scanPopup!=undefined){
this.$refs.scanPopup.closeScanPopup();
}
},
scanPopupGetFocus() {
@ -331,11 +334,6 @@
}
},
scanLocationCode(location, code) {
this.toLocationCode = code
this.toLocationCode = location;
},
submit() {
uni.showLoading({
title: "提交中....",
@ -390,17 +388,18 @@
fromLocation.Batchs.forEach(batch => {
let subItem = batch.detail;
subItem.recordList = [];
if (batch.Records.length > 0) {
batch.Records.forEach(r => {
let record = {};
record.handleQty = r.qty;
record.fromPackingNumber = r
.packingNumber;
record.fromBatch = r.batch;
record.fromContainerNumber = r
.ContainerNumber;
record.toContainerNumber = r
.ContainerNumber;
record.toInventoryStatus = r
@ -409,15 +408,16 @@
.toLocationCode;
record.fromLocationCode = fromLocation.fromLocationCode
record.supplierCode = r.supplierCode;
var info = getPackingNumberAndBatch(
this.managementList, r
.itemCode,
r.packingNumber, r
.batch);
record.toPackingNumber = info
.packingNumber;
record.toBatch = info.batch;
//使
var info = getPackingNumberAndBatch(
this.managementList, r
.itemCode,
r.packingNumber, r
.batch);
record.toPackingNumber = info
.packingNumber;
record.toBatch = info.batch;
subItem.recordList.push(record);
})
subList.push(subItem);
@ -426,7 +426,7 @@
})
})
})
this.dataContent.subList = subList
this.dataContent.createTime = createTime;
this.dataContent.creator = creator;

Loading…
Cancel
Save