Bugzilla – Attachment 143373 Details for
Bug 22042
BlockReturnofWithdrawn Items does not block refund generation when item is withdrawn and lost
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22042: Block all return actions when BlockReturnOfWithdrawn items is set to block
Bug-22042-Block-all-return-actions-when-BlockRetur.patch (text/plain), 3.04 KB, created by
Nick Clemens (kidclamp)
on 2022-11-07 14:43:31 UTC
(
hide
)
Description:
Bug 22042: Block all return actions when BlockReturnOfWithdrawn items is set to block
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2022-11-07 14:43:31 UTC
Size:
3.04 KB
patch
obsolete
>From 6eff2ff494b8b4e8c08cee698192458b005f5f71 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Fri, 8 Apr 2022 18:52:09 +0000 >Subject: [PATCH] Bug 22042: Block all return actions when > BlockReturnOfWithdrawn items is set to block > >Currently this syspref only bokcs the literal 'return' from a patron, i.e. the checkin > >It still processes transfers, refunds lost items, updates NotForLoan status etc. > >We should block all of these things > >To test: >1 - Set BlockReturnOfWithdrawn to block >2 - Set an item as lost and withdrawn >3 - Check it in >4 - Item is found >5 - Apply patch >6 - Repeat 1-3 >7 - Checkin is blocked, item still lost >--- > C4/Circulation.pm | 15 ++++++++++----- > t/db_dependent/Circulation.t | 16 +++++++++++++++- > 2 files changed, 25 insertions(+), 6 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index aa858a855b..2b9e71bd17 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -2097,6 +2097,16 @@ sub AddReturn { > } > } > >+ if ( $item->withdrawn ) { # book has been cancelled >+ $messages->{'withdrawn'} = 1; >+ >+ # In the case where we block return of withdrawn, we should completely block the return >+ # without updating item statuses, so we exit early >+ return ( 0, $messages, $issue, ( $patron ? $patron->unblessed : {} )) >+ if C4::Context->preference("BlockReturnOfWithdrawnItems"); >+ } >+ >+ > # full item data, but no borrowernumber or checkout info (no issue) > my $hbr = Koha::CirculationRules->get_return_branch_policy($item); > # get the proper branch to which to return the item >@@ -2166,11 +2176,6 @@ sub AddReturn { > return ( $doreturn, $messages, $issue, $patron_unblessed); > } > >- if ( $item->withdrawn ) { # book has been cancelled >- $messages->{'withdrawn'} = 1; >- $doreturn = 0 if C4::Context->preference("BlockReturnOfWithdrawnItems"); >- } >- > if ( $item->itemlost and C4::Context->preference("BlockReturnOfLostItems") ) { > $doreturn = 0; > } >diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t >index b783a8268b..cc4e3c15a4 100755 >--- a/t/db_dependent/Circulation.t >+++ b/t/db_dependent/Circulation.t >@@ -18,7 +18,7 @@ > use Modern::Perl; > use utf8; > >-use Test::More tests => 63; >+use Test::More tests => 64; > use Test::Exception; > use Test::MockModule; > use Test::Deep qw( cmp_deeply ); >@@ -5693,6 +5693,20 @@ subtest "GetSoonestRenewDate tests" => sub { > ); > }; > >+subtest 'Tests for BlockReturnOfWithdrawnItems' => sub { >+ >+ plan tests => 1; >+ >+ t::lib::Mocks::mock_preference('BlockReturnOfWithdrawnItems', 1); >+ my $item = $builder->build_sample_item(); >+ $item->withdrawn(1)->itemlost(1)->store; >+ my @return = AddReturn( $item->barcode, $item->homebranch, 0, undef ); >+ is_deeply( >+ \@return, >+ [ 0, { NotIssued => $item->barcode, withdrawn => 1 }, undef, {} ], "Item returned as withdrawn, no other messages"); >+ >+}; >+ > $schema->storage->txn_rollback; > C4::Context->clear_syspref_cache(); > $branches = Koha::Libraries->search(); >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22042
:
133123
|
136693
|
143373
|
143379
|
145279
|
145659