Browse Source

修改计划外出库校验

hella_vue3
lijuncheng 6 months ago
parent
commit
fff686d287
  1. 8
      src/mycomponents/scan/winScanPackAndLocation.vue

8
src/mycomponents/scan/winScanPackAndLocation.vue

@ -162,7 +162,7 @@
}, 500)
this.fromInventoryStatuses = jobContent.outInventoryStatuses
this.inventoryStatus = getDirectoryItemArray(jobContent.outInventoryStatuses); //; //
this.fromLocationAreaTypeList = getDirectoryItemArray(jobContent.fromAreaCodes); //
this.fromLocationAreaTypeList = getDirectoryItemArray(jobContent.fromAreaTypes); //
},
closeScanPopup(content) {
@ -197,7 +197,7 @@
uni.hideLoading();
if (res.data.total > 0) {
let result = res.data.list[0];
var type = result.type;
var type = result.areaType;
var available = result.available;
if (available == "TRUE") {
if (checkDirectoryItemExist(this.fromLocationAreaTypeList, type)) {
@ -206,8 +206,8 @@
this.checkPackage(scanResult);
} else {
var hint = getListLocationAreaTypeDesc(this.fromLocationAreaTypeList);
this.showErrorMessage("扫描库位[" + this.code + "]是[" +
getLocationAreaTypeName(areaType) + "],需要的库区是[" + hint + "]")
this.showErrorMessage("扫描库位[" + this.fromLocationCode + "]是[" +
getLocationAreaTypeName(result.areaType) + "],需要的库区是[" + hint + "]")
}
} else {
this.showErrorMessage("扫描库位[" + this.fromLocationCode + "]不可用", res => {

Loading…
Cancel
Save