From 602ddf51f97d89a9593c15a69f4673fa163de46f Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Mon, 29 Sep 2025 15:23:14 +0800 Subject: [PATCH] =?UTF-8?q?ifs=E5=BA=93=E5=AD=98=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/warehouse/ifsInventoryInit.vue | 61 +++++++++++++++---- src/views/modules/warehouse/labelQuery.vue | 9 ++- 2 files changed, 56 insertions(+), 14 deletions(-) diff --git a/src/views/modules/warehouse/ifsInventoryInit.vue b/src/views/modules/warehouse/ifsInventoryInit.vue index ac839f7..b34d93a 100644 --- a/src/views/modules/warehouse/ifsInventoryInit.vue +++ b/src/views/modules/warehouse/ifsInventoryInit.vue @@ -2,7 +2,7 @@
- + @@ -10,11 +10,15 @@ + + + + + + 查询 - - 搜索 - + 重置 @@ -47,13 +51,13 @@ prop="partNo" header-align="center" align="center" - label="商品编码"> + label="物料编码"> + label="物料描述"> @@ -83,7 +87,13 @@ prop="printQty" header-align="center" align="center" - label="已打数量"> + label="已打印数量"> + + - + @@ -139,10 +149,21 @@ - + + + + + + + + + + + + - + @@ -187,7 +208,9 @@ export default { dataForm: { partNo: '', batchNo: '', - locationId: '' + locationId: '', + descriptionLike: '', + minUnPrintQty: 0 }, dataList: [], pageIndex: 1, @@ -279,6 +302,8 @@ export default { batchNo: row.batchNo, wdr: row.wdr, locationId: row.locationId, + inQty: row.inQty, + unPrintQty: row.unPrintQty, perPackageQty: '', packageCount: 1 } @@ -357,6 +382,18 @@ export default { } catch (error) { return Promise.reject(error); } + }, + // 重置表单 + resetForm() { + this.dataForm = { + partNo: '', + batchNo: '', + locationId: '', + descriptionLike: '', + minUnPrintQty: 0 + } + this.pageIndex = 1 + this.getDataList() } } } diff --git a/src/views/modules/warehouse/labelQuery.vue b/src/views/modules/warehouse/labelQuery.vue index 4de0a25..e520e21 100644 --- a/src/views/modules/warehouse/labelQuery.vue +++ b/src/views/modules/warehouse/labelQuery.vue @@ -21,6 +21,9 @@ + + + 查询 重置 @@ -115,7 +118,8 @@ export default { partNo: '', batchNo: '', locationId: '', - unitId: '' + unitId: '', + partDesc: '' }, // 打印相关配置 reportId: 'HU_LABEL', // 默认报表ID,可根据实际情况调整 @@ -168,7 +172,8 @@ export default { partNo: '', batchNo: '', locationId: '', - unitId: '' + unitId: '', + partDesc: '' } this.pageIndex = 1 this.getDataList()