Browse Source

YT-1119 隔离转合格记录从仓库代码

intex
lijuncheng 2 days ago
parent
commit
310dd0bdd6
  1. 6
      src/mycomponents/scan/winScanPackAndLocation.vue
  2. 4
      src/pages/inventoryMove/coms/comMoveRecord.vue

6
src/mycomponents/scan/winScanPackAndLocation.vue

@ -149,7 +149,8 @@
managementPrecision: '',
fromInventoryStatuses: "",
isCheck: false,
chooseWhich: '1'
chooseWhich: '1',
fromWarehouseCode:""
}
},
created() {
@ -277,6 +278,7 @@
if (available == "TRUE") {
if (checkDirectoryItemExist(this.fromLocationAreaTypeList, type)) {
this.location = result;
this.fromWarehouseCode=result.warehouseCode
// this.packGetFocus();
//
if(this.isJustReplay){
@ -470,6 +472,7 @@
let data = {
label: this.scanResult.label,
package: this.scanResult.package,
fromWarehouseCode:this.fromWarehouseCode,
balance: datas,
fromLocationCode: this.fromLocationCode,
}
@ -491,6 +494,7 @@
let data = {
label: this.scanResult.label,
package: this.scanResult.package,
fromWarehouseCode:this.fromWarehouseCode,
balance: item,
fromLocationCode: this.fromLocationCode,
}

4
src/pages/inventoryMove/coms/comMoveRecord.vue

@ -157,6 +157,7 @@
itemCodeTypeList: [],
isShowEditLocation: false,
isJustReplay: true, //
fromWarehouseCode:""
}
},
@ -286,6 +287,7 @@
this.toLocationInfo = location;
},
getScanResult(result, managementTypeParams) {
this.fromWarehouseCode =result.fromWarehouseCode
this.managementType = managementTypeParams
if (this.showOnePop) {
if (this.isJustReplay) {
@ -757,7 +759,7 @@
})
this.dataContent.subList = subList;
this.dataContent.creator = creator;
this.dataContent.fromWarehouseCode = this.fromLocationInfo.warehouseCode;
this.dataContent.fromWarehouseCode = this.fromWarehouseCode;
this.dataContent.toWarehouseCode = this.toLocationInfo.warehouseCode;
this.dataContent.businessType = this.businessTypeCode;
return this.dataContent;

Loading…
Cancel
Save