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