From 19d5a73376207fe1435a08ceb05624f310961675 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Tue, 23 Jan 2024 17:33:37 +0800 Subject: [PATCH] =?UTF-8?q?1.=E7=9B=B4=E6=8E=A5=E9=80=80=E5=BA=93=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=8D=8A=E6=88=90=E5=93=81=E5=BA=93=E4=BD=8D?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B2.=E9=9D=9E=E7=94=9F=E4=BA=A7=E9=A2=86?= =?UTF-8?q?=E6=96=99=E5=A2=9E=E5=8A=A0=E5=8D=8A=E6=88=90=E5=93=81=E5=BA=93?= =?UTF-8?q?=E4=BD=8D=E7=B1=BB=E5=9E=8B?= 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 e5b34b84e..f1753f5a8 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 == 4||res.type == 5) { + if (res.type == 3||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 2664985ea..60322f761 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,4], + locationTypes: [2,3,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); }