@@ -, +, @@ GetItem --- C4/Circulation.pm | 2 +- t/db_dependent/Circulation.t | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2907,7 +2907,7 @@ sub AddRenewal { branchcode => $branchcode, description => 'Renewal of Rental Item ' . $biblio->title - . " $item->barcode", + . " " . $item->barcode, } )->store(); } --- a/t/db_dependent/Circulation.t +++ a/t/db_dependent/Circulation.t @@ -2531,16 +2531,16 @@ subtest 'Cancel transfers on lost items' => sub { #Check transfer exists and the items holding branch is the transfer destination branch before marking it as lost my ($datesent,$frombranch,$tobranch) = GetTransfers($item->{itemnumber}); is( $tobranch, $library_2->{branchcode}, 'The transfer record exists in the branchtransfers table'); - my $itemcheck = GetItem($item->{itemnumber}); - is( $itemcheck->{holdingbranch}, $library_2->{branchcode}, 'Items holding branch is the transfers destination branch before it is marked as lost' ); + my $itemcheck = Koha::Items->find($item->{itemnumber}); + is( $itemcheck->holdingbranch, $library_2->{branchcode}, 'Items holding branch is the transfers destination branch before it is marked as lost' ); #Simulate item being marked as lost and confirm the transfer is deleted and the items holding branch is the transfers source branch ModItem( { itemlost => 1 }, $biblio->{biblionumber}, $item->{itemnumber} ); LostItem( $item->{itemnumber}, 'test', 1 ); ($datesent,$frombranch,$tobranch) = GetTransfers($item->{itemnumber}); is( $tobranch, undef, 'The transfer on the lost item has been deleted as the LostItemCancelOutstandingTransfer is enabled'); - $itemcheck = GetItem($item->{itemnumber}); - is( $itemcheck->{holdingbranch}, $library_1->{branchcode}, 'Lost item with cancelled hold has holding branch equallying the transfers source branch' ); + $itemcheck = Koha::Items->find($item->{itemnumber}); + is( $itemcheck->holdingbranch, $library_1->{branchcode}, 'Lost item with cancelled hold has holding branch equallying the transfers source branch' ); }; subtest 'CanBookBeIssued | is_overdue' => sub { @@ -2924,8 +2924,6 @@ subtest 'AddRenewal and AddIssuingCharge tests' => sub { ); my $item = Koha::Items->find( $item_id ); - my $items = Test::MockModule->new('C4::Items'); - $items->mock( GetItem => $item->unblessed ); my $context = Test::MockModule->new('C4::Context'); $context->mock( userenv => { branch => $library->id } ); --