From 17551dc527456e03c19d504d77d719cea2806da8 Mon Sep 17 00:00:00 2001 From: xs Date: Thu, 29 May 2025 14:22:45 +0800 Subject: [PATCH 1/2] =?UTF-8?q?4.0.13=20=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hw-ui/src/layout/components/Navbar.vue | 3 +- hw-ui/src/views/system/config/index.vue | 18 ++++----- hw-ui/src/views/system/dict/data.vue | 50 ++++++++++++------------ hw-ui/src/views/system/dict/index.vue | 52 ++++++++++++------------- 4 files changed, 62 insertions(+), 61 deletions(-) diff --git a/hw-ui/src/layout/components/Navbar.vue b/hw-ui/src/layout/components/Navbar.vue index 44a5d5ec..e58a7322 100644 --- a/hw-ui/src/layout/components/Navbar.vue +++ b/hw-ui/src/layout/components/Navbar.vue @@ -81,6 +81,7 @@ {{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }} + @@ -154,13 +154,13 @@ - + - + \ No newline at end of file + diff --git a/hw-ui/src/views/system/dict/data.vue b/hw-ui/src/views/system/dict/data.vue index 3befe4a6..8dc5527d 100644 --- a/hw-ui/src/views/system/dict/data.vue +++ b/hw-ui/src/views/system/dict/data.vue @@ -36,16 +36,16 @@ - - 新增 - + + + + + + + + + + 修改 - - 删除 - + + + + + + + + + + + {{ parseTime(scope.row.createTime) }} - + - + @@ -399,4 +399,4 @@ export default { } } }; - \ No newline at end of file + diff --git a/hw-ui/src/views/system/dict/index.vue b/hw-ui/src/views/system/dict/index.vue index 6ca54571..7a31d1c1 100644 --- a/hw-ui/src/views/system/dict/index.vue +++ b/hw-ui/src/views/system/dict/index.vue @@ -52,16 +52,16 @@ - - 新增 - + + + + + + + + + + 修改 - - 删除 - + + + + + + + + + + + {{ parseTime(scope.row.createTime) }} - + - + - + \ No newline at end of file + From 0c658200708afa9e3edb765c6c22d099fc4a0be3 Mon Sep 17 00:00:00 2001 From: xs Date: Wed, 11 Jun 2025 17:00:42 +0800 Subject: [PATCH 2/2] =?UTF-8?q?4.0.14=20=E8=BD=A6=E9=97=B4=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E9=A2=86=E6=96=99=E5=88=86=E9=A1=B5=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98=EF=BC=8C=E9=94=80=E5=94=AE?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=AF=BC=E5=85=A5title=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/board/common/applyRawOutstock.vue | 19 +++++++++++++++---- hw-ui/src/views/mes/saleOrder/index.vue | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/hw-ui/src/views/board/common/applyRawOutstock.vue b/hw-ui/src/views/board/common/applyRawOutstock.vue index b8de3834..a063c6eb 100644 --- a/hw-ui/src/views/board/common/applyRawOutstock.vue +++ b/hw-ui/src/views/board/common/applyRawOutstock.vue @@ -42,8 +42,8 @@ - BOM内物料搜索 - 非BOM内物料搜索 + BOM内物料搜索 + 非BOM内物料搜索 重置 @@ -210,6 +210,7 @@ export default { YES: '1',//是 }, wmsRawOutstockDetailList:[], + bomFlag:undefined, }; }, created() { @@ -280,8 +281,18 @@ export default { this.searchMaterial(); }, + searchBomMaterial(){ + this.bomFlag = "1"; + this.searchMaterial() + }, + + searchNoneBomMaterial(){ + this.bomFlag = "0"; + this.searchMaterial(); + }, + // 物料搜索 - searchMaterial(bomFlag) { + searchMaterial() { this.loading = true; if (this.form.warehouseId === null || this.form.warehouseId === undefined || this.form.warehouseId === "") { @@ -293,7 +304,7 @@ export default { this.queryParams.planDetailCode = this.form.planDetailCode; this.queryParams.productId = this.form.productId; this.queryParams.materialBomId = this.form.materialBomId; - this.queryParams.accessoriesFlag = bomFlag; + this.queryParams.accessoriesFlag = this.bomFlag; getStockTotal(this.queryParams).then(e => { this.total = e.total; // e.rows.forEach(ee =>{ diff --git a/hw-ui/src/views/mes/saleOrder/index.vue b/hw-ui/src/views/mes/saleOrder/index.vue index 8bf52ed3..8ba8ec55 100644 --- a/hw-ui/src/views/mes/saleOrder/index.vue +++ b/hw-ui/src/views/mes/saleOrder/index.vue @@ -783,7 +783,7 @@ export default { /** 导入按钮操作 */ handleImport() { - this.upload.title = "提资单导入"; + this.upload.title = "销售订单导入"; this.upload.open = true; this.submitLoading = false; },