From 19b83f8f93c2879d172fe6d9de011a7effc97c08 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 28 Mar 2018 16:25:07 +0200 Subject: [PATCH] Bug 20487: AddReturn should clear items.onloan for unissued items Content-Type: text/plain; charset=utf-8 If an item is no longer issued but somehow still has a date in the onloan column, checking it in should clear that date. Adding a ModItem call in the NotIssued section. Test plan: [1] Run t/db_dependent/Circulation.t [2] Bonus: Checkout item, delete issue from table, checkin. Verify that items.onloan has been cleared. Signed-off-by: Marcel de Rooy --- C4/Circulation.pm | 1 + t/db_dependent/Circulation.t | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index c6dc6af..46359fc 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -1814,6 +1814,7 @@ sub AddReturn { . Dumper($issue->unblessed) . "\n"; } else { $messages->{'NotIssued'} = $barcode; + ModItem({ onloan => undef }, $item->{biblionumber}, $item->{itemnumber}) if defined $item->{onloan}; # even though item is not on loan, it may still be transferred; therefore, get current branch info $doreturn = 0; # No issue, no borrowernumber. ONLY if $doreturn, *might* you have a $borrower later. diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index 468fdfa..9dee5df 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -17,7 +17,7 @@ use Modern::Perl; -use Test::More tests => 116; +use Test::More tests => 117; use DateTime; use POSIX qw( floor ); @@ -2163,6 +2163,16 @@ subtest 'CanBookBeIssued | is_overdue' => sub { }; +subtest 'AddReturn should clear items.onloan for unissued items' => sub { + plan tests => 1; + + t::lib::Mocks::mock_preference( "AllowReturnToBranch", 'anywhere' ); + my $item = $builder->build_object({ class => 'Koha::Items', value => { onloan => '2018-01-01' }}); + AddReturn( $item->barcode, $item->homebranch ); + $item->discard_changes; # refresh + is( $item->onloan, undef, 'AddReturn did clear items.onloan' ); +}; + sub set_userenv { my ( $library ) = @_; C4::Context->set_userenv(0,0,0,'firstname','surname', $library->{branchcode}, $library->{branchname}, '', '', ''); -- 2.1.4