@@ -, +, @@ 1 - Check an item out to a paron 2 - Export the item using Tools->Export data 3 - Stage the record for import 4 - Match on 999c and replace items 5 - Import the batch 6 - View the record and note item is checked out and Available 7 - In the DB note the onloan value is now null 8 - Check in the item 9 - Apply patch --- Koha/Object.pm | 1 + 1 file changed, 1 insertion(+) --- a/Koha/Object.pm +++ a/Koha/Object.pm @@ -299,6 +299,7 @@ sub set_or_blank { foreach my $col ( keys %{$columns_info} ) { + next if $col eq 'onloan'; # Do not blank onloan field next if exists $properties->{$col}; if ( $columns_info->{$col}->{is_nullable} ) { --