Browse Source

物料隔离记录导出的数据缺少

linshi20240813
zhang_li 3 months ago
parent
commit
1469a2ba1f
  1. 9
      src/views/wms/moveManage/inventorymove/inventorymoveRecordMain/index.vue

9
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"

Loading…
Cancel
Save