From 1469a2ba1f9fdad4cbdbcf9048cb90398c6c09ef Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Mon, 12 Aug 2024 13:42:41 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=A9=E6=96=99=E9=9A=94=E7=A6=BB=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E5=AF=BC=E5=87=BA=E7=9A=84=E6=95=B0=E6=8D=AE=E7=BC=BA?= =?UTF-8?q?=E5=B0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inventorymove/inventorymoveRecordMain/index.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/views/wms/moveManage/inventorymove/inventorymoveRecordMain/index.vue b/src/views/wms/moveManage/inventorymove/inventorymoveRecordMain/index.vue index aebbaa0dc..4fed4c42e 100644 --- a/src/views/wms/moveManage/inventorymove/inventorymoveRecordMain/index.vue +++ b/src/views/wms/moveManage/inventorymove/inventorymoveRecordMain/index.vue @@ -103,7 +103,8 @@ const { tableObject, tableMethods } = useTable({ if ( routeName.value == 'OktoholdRecordMain') { tableObject.params = { fromInventoryStatus: 'OK', - toInventoryStatus:'HOLD' + toInventoryStatus: 'HOLD', + businessType:'OkToHold' } fromInventoryStatus.value = 'OK' toInventoryStatus.value = "HOLD" @@ -111,7 +112,8 @@ const { tableObject, tableMethods } = useTable({ } else if ( routeName.value == 'NoktoholdRecordMain') { tableObject.params = { fromInventoryStatus: 'NOK', - toInventoryStatus:'HOLD' + toInventoryStatus:'HOLD', + businessType:'Move' } fromInventoryStatus.value = 'NOK' toInventoryStatus.value = "HOLD" @@ -119,7 +121,8 @@ const { tableObject, tableMethods } = useTable({ }else if ( routeName.value == 'HoldtookRecordMain') { tableObject.params = { fromInventoryStatus: 'HOLD', - toInventoryStatus:'OK' + toInventoryStatus:'OK', + businessType:'NokToHold' } fromInventoryStatus.value = 'HOLD' toInventoryStatus.value = "OK"