From 2113f0ab077375b458e1967070e8f5451a7e088c Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Mon, 22 Jan 2024 15:29:11 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E9=80=80=E6=96=99=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=88=90=E5=93=81=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PDA/pages/return/returnToWarehouse.vue | 4 ++-- fe/PDA/pages/task/unProducePickDetail.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fe/PDA/pages/return/returnToWarehouse.vue b/fe/PDA/pages/return/returnToWarehouse.vue index 9adc13135..e5b34b84e 100644 --- a/fe/PDA/pages/return/returnToWarehouse.vue +++ b/fe/PDA/pages/return/returnToWarehouse.vue @@ -158,12 +158,12 @@ }); locations(code).then(res => { if (res != null) { - if (res.type == 5) { + if (res.type == 4||res.type == 5) { that.fromLocation = res; this.openPackLabel(); this.closeScanFromLocationPopup(); } else { - that.showMessage('扫描的库位【' + code + '】不是线边库位'); + that.showMessage('扫描的库位【' + code + '】不是线边库位或成品库位'); } } else { that.showMessage('未查询到库位【' + code + '】'); diff --git a/fe/PDA/pages/task/unProducePickDetail.vue b/fe/PDA/pages/task/unProducePickDetail.vue index 6356fd2f5..2664985ea 100644 --- a/fe/PDA/pages/task/unProducePickDetail.vue +++ b/fe/PDA/pages/task/unProducePickDetail.vue @@ -412,7 +412,7 @@ itemCode: result.data.itemCode, lot: result.data.lot, inventoryStatus: 2, //库存状态默认2 - locationTypes: [2], + locationTypes: [2,4], sortBy: 'PackingCode asc' }; getBalancesByFilter(params) @@ -420,7 +420,7 @@ if (res.totalCount === 0) { this.showScanMessage('按零件号【' + result.data.itemCode + '】箱码【' + result.data.code + '】批次【' + result - .data.lot + '】在【原料库】未查询到库存信息'); + .data.lot + '】在【原料库】或【成品库】未查询到库存信息'); } else { callback(res); }