@@ -, +, @@ makePreviousSerialAvailable --- serials/serials-edit.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/serials/serials-edit.pl +++ a/serials/serials-edit.pl @@ -267,7 +267,8 @@ if ( $op and $op eq 'serialchangestatus' ) { my $subscriptioninfos = GetSubscription($subscriptionids[$i]); # Changing the status to "available" and the itemtype according to the previousitemtype db field - $serialitem->set( + my $item = Koha::Items->find($itemnumber); + $item->set( { notforloan => 0, itype => $subscriptioninfos->{'previousitemtype'} --