Bugzilla – Attachment 160647 Details for
Bug 35100
Items assigned to StockRotation do not advance if a hold is triggered before the initial transfer
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35100: Various fixes
Bug-35100-Various-fixes.patch (text/plain), 15.70 KB, created by
Martin Renvoize (ashimema)
on 2024-01-08 16:27:17 UTC
(
hide
)
Description:
Bug 35100: Various fixes
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-01-08 16:27:17 UTC
Size:
15.70 KB
patch
obsolete
>From 05de69cb90dde77562f75c11cf43096159fa9eea Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 5 Jan 2024 16:08:44 +0000 >Subject: [PATCH] Bug 35100: Various fixes > >1) Don't automagically always set a transfer to in transit on checkin.. > wait for the user to actually confirm that's the case >2) New transfers triggered by a hold should take precidence, so hide > transfers for any other reason from display >3) Update get_transfer and get_transfers to ensure ordering isn't lost > when prefetch is used and add tests for this > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > C4/Circulation.pm | 12 +-- > C4/Items.pm | 2 +- > Koha/Item.pm | 15 ++- > Koha/Schema/Result/Item.pm | 3 +- > catalogue/detail.pl | 3 +- > circ/returns.pl | 4 + > .../prog/en/modules/circ/returns.tt | 5 +- > t/db_dependent/Circulation.t | 35 ++++-- > t/db_dependent/Koha/Item.t | 100 +++++++++++++++++- > 9 files changed, 151 insertions(+), 28 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 562cad72671..65f87eedb07 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -2376,10 +2376,9 @@ sub AddReturn { > else { > $messages->{'TransferTrigger'} = $transfer->reason; > if ( $transfer->frombranch eq $branch ) { >- $transfer->transit; >- $messages->{'WasTransfered'} = $transfer->tobranch; >- } >- else { >+ $messages->{'TransferTo'} = $transfer->tobranch; >+ $messages->{'WasTransfered'} = $transfer->id; >+ } else { > $messages->{'WrongTransfer'} = $transfer->tobranch; > $messages->{'WrongTransferItem'} = $item->itemnumber; > } >@@ -2529,8 +2528,9 @@ sub AddReturn { > (C4::Context->preference("UseBranchTransferLimits") and > ! IsBranchTransferAllowed($branch, $returnbranch, $item->$BranchTransferLimitsType ) > )) { >- ModItemTransfer($item->itemnumber, $branch, $returnbranch, $transfer_trigger, { skip_record_index => 1 }); >- $messages->{'WasTransfered'} = $returnbranch; >+ my $transfer = ModItemTransfer($item->itemnumber, $branch, $returnbranch, $transfer_trigger, { skip_record_index => 1 }); >+ $messages->{'TransferTo'} = $returnbranch; >+ $messages->{'WasTransfered'} = $transfer->id; > $messages->{'TransferTrigger'} = $transfer_trigger; > } else { > $messages->{'NeedsTransfer'} = $returnbranch; >diff --git a/C4/Items.pm b/C4/Items.pm >index c640b63baa3..c2f7ae16b54 100644 >--- a/C4/Items.pm >+++ b/C4/Items.pm >@@ -386,7 +386,7 @@ sub ModItemTransfer { > $transfer->transit({ skip_record_index => $params->{skip_record_index} }); > } > >- return; >+ return $transfer; > } > > =head2 ModDateLastSeen >diff --git a/Koha/Item.pm b/Koha/Item.pm >index a86b9287645..1156b6f4a04 100644 >--- a/Koha/Item.pm >+++ b/Koha/Item.pm >@@ -776,9 +776,13 @@ we still expect the item to end up at a final location eventually. > > sub get_transfer { > my ($self) = @_; >+ my $transfers = $self->_result->current_branchtransfers->search( >+ undef, >+ { 'order_by' => [ { '-desc' => 'datesent' }, { '-asc' => 'daterequested' } ] } >+ ); > >- my $transfer = $self->_result->current_branchtransfers->next; >- return Koha::Item::Transfer->_new_from_dbic($transfer) if $transfer; >+ my $transfer = $transfers->next; >+ return Koha::Item::Transfer->_new_from_dbic($transfer) if $transfer; > } > > =head3 get_transfers >@@ -801,9 +805,12 @@ we still expect the item to end up at a final location eventually. > sub get_transfers { > my ($self) = @_; > >- my $transfer_rs = $self->_result->current_branchtransfers; >+ my $transfers_rs = $self->_result->current_branchtransfers->search( >+ undef, >+ { 'order_by' => [ { '-desc' => 'datesent' }, { '-asc' => 'daterequested' } ] } >+ ); > >- return Koha::Item::Transfers->_new_from_dbic($transfer_rs); >+ return Koha::Item::Transfers->_new_from_dbic($transfers_rs); > } > > =head3 last_returned_by >diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm >index 8320ce4c761..042e803a672 100644 >--- a/Koha/Schema/Result/Item.pm >+++ b/Koha/Schema/Result/Item.pm >@@ -1024,8 +1024,7 @@ __PACKAGE__->has_many( > "$args->{foreign_alias}.datearrived" => undef, > "$args->{foreign_alias}.datecancelled" => undef, > }; >- }, >- { order_by => [ { -desc => 'datesent' }, { -asc => 'daterequested' } ] } >+ } > ); > > # Relationship with bundled items >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index 9edaf3f3bbf..dbeb095ada3 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -196,7 +196,8 @@ $params->{ itemlost } = 0 if $patron->category->hidelostitems && !$showallitems; > my $items_params = { > ( $invalid_marc_record ? () : ( host_items => 1 ) ), > }; >-my $items = $biblio->items($items_params)->search_ordered( $params, { prefetch => ['issue','current_branchtransfers'] } ); >+my $items = >+ $biblio->items($items_params)->search_ordered( $params, { prefetch => [ 'issue', 'current_branchtransfers' ] } ); > > # flag indicating existence of at least one item linked via a host record > my $hostrecords = $biblio->host_items->count; >diff --git a/circ/returns.pl b/circ/returns.pl >index c0df0611390..4ec8cc22596 100755 >--- a/circ/returns.pl >+++ b/circ/returns.pl >@@ -521,6 +521,7 @@ if ( $messages->{'WasTransfered'} ) { > $template->param( > found => 1, > transfer => $messages->{'WasTransfered'}, >+ transferto => $messages->{'TransferTo'}, > trigger => $messages->{'TransferTrigger'}, > itemnumber => $itemnumber, > ); >@@ -696,6 +697,9 @@ foreach my $code ( keys %$messages ) { > elsif ( $code eq 'WasTransfered' ) { > ; # FIXME... anything to do here? > } >+ elsif ( $code eq 'TransferTo' ) { >+ ; # Handled above, along with WasTransfered >+ } > elsif ( $code eq 'withdrawn' ) { > $err{withdrawn} = 1; > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index 2abde7f9c5a..f937133addd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -121,7 +121,7 @@ > </div> <!-- /.hold-auto-filled --> > [% END # /IF hold_auto_filled %] > >- [% IF ( trigger ) %] >+ [% IF ( trigger && !transfertodo ) %] > <div id="transfer-trigger" class="dialog message"> > <h3>Reason for transfer</h3> > <p> >@@ -737,7 +737,7 @@ > > <div class="modal-header"> > <h3> >- Please return this item to [% IF transfer %][% Branches.GetName( transfer ) | html %][% ELSE %][% Branches.GetName( returnbranch ) | html %][% END %] >+ Please return this item to [% IF transferto %][% Branches.GetName( transferto ) | html %][% ELSE %][% Branches.GetName( returnbranch ) | html %][% END %] > </h3> > </div> > <div class="modal-body"> >@@ -763,6 +763,7 @@ > <button type="button" name="dotransfer" class="btn btn-default print openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber | uri %]&&branchcode=[% returnbranch | uri %]&op=slip"><i class="fa fa-print"></i> Yes, print slip</button> > <button type="button" data-dismiss="modal" class="btn btn-default deny" name="notransfer" value="No" accesskey="n"><i class="fa fa-times"></i> No (N)</button> > [% ELSE %] >+ <input type="hidden" name="transit" value="[% transfer | uri %]"/> > <button type="button" data-dismiss="modal" class="btn btn-default approve" accesskey="y"><i class="fa fa-check"></i> OK (Y)</button> > <button type="button" data-dismiss="modal" class="btn btn-default print openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber | uri %]&branchcode=[% transfer | uri %]&op=slip" accesskey="p"><i class="fa fa-print"></i> Print slip (P)</button> > [% END %] >diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t >index 288c5650139..b4afdd61890 100755 >--- a/t/db_dependent/Circulation.t >+++ b/t/db_dependent/Circulation.t >@@ -6093,25 +6093,38 @@ subtest 'Tests for transfer not in transit' => sub { > > plan tests => 2; > >- > # These tests are to ensure a 'pending' transfer, generated by > # stock rotation, will be advanced when checked in > >- my $item = $builder->build_sample_item(); >- my $transfer = $builder->build_object({ class => 'Koha::Item::Transfers', value => { >- itemnumber => $item->id, >- reason => 'StockrotationRepatriation', >- datesent => undef, >- frombranch => $item->homebranch, >- }}); >+ my $item = $builder->build_sample_item(); >+ my $transfer = $builder->build_object( >+ { >+ class => 'Koha::Item::Transfers', >+ value => { >+ itemnumber => $item->id, >+ reason => 'StockrotationRepatriation', >+ datesent => undef, >+ frombranch => $item->homebranch, >+ } >+ } >+ ); > my @return = AddReturn( $item->barcode, $item->homebranch, 0, undef ); > is_deeply( > \@return, >- [ 0, { WasTransfered => $transfer->tobranch, TransferTrigger => 'StockrotationRepatriation', NotIssued => $item->barcode }, undef, {} ], "Item is reported to have been transferred"); >+ [ >+ 0, >+ { >+ TransferTo => $transfer->tobranch, WasTransfered => $transfer->id, >+ TransferTrigger => 'StockrotationRepatriation', NotIssued => $item->barcode >+ }, >+ undef, >+ {} >+ ], >+ "Item is reported to have been transferred" >+ ); > > $transfer->discard_changes; >- ok( $transfer->datesent, 'The datesent field is populated, i.e. transfer is initiated'); >- >+ is( $transfer->datesent, undef, 'The datesent field remains unpopulated, i.e. transfer is not yet initiated' ); > }; > > subtest 'Tests for RecordLocalUseOnReturn' => sub { >diff --git a/t/db_dependent/Koha/Item.t b/t/db_dependent/Koha/Item.t >index 05d19ad1165..bd519ae7a61 100755 >--- a/t/db_dependent/Koha/Item.t >+++ b/t/db_dependent/Koha/Item.t >@@ -1101,7 +1101,7 @@ subtest 'Tests for itemtype' => sub { > }; > > subtest 'get_transfers' => sub { >- plan tests => 16; >+ plan tests => 17; > $schema->storage->txn_begin; > > my $item = $builder->build_sample_item(); >@@ -1196,6 +1196,104 @@ subtest 'get_transfers' => sub { > $result_1 = $transfers->next; > is( $result_1->branchtransfer_id, $transfer_3->branchtransfer_id, 'Koha::Item->get_transfers returns the only transfer that remains'); > >+ subtest "Ensure prefetches don't affect the return order" => sub { >+ plan tests => 13; >+ >+ # Reset test data >+ $transfer_2->datesent(undef)->store; >+ $transfer_2->datearrived(undef)->store; >+ $transfer_1->datecancelled(undef)->store; >+ >+ my $prefetched_item = Koha::Items->search( >+ { 'me.itemnumber' => $item->itemnumber }, >+ { prefetch => ['current_branchtransfers'] } >+ )->next; >+ >+ $transfers = $prefetched_item->get_transfers(); >+ is( >+ $transfers->count, 3, >+ 'When there are multiple open transfer requests, the Koha::Item::Transfers object contains them all' >+ ); >+ $result_1 = $transfers->next; >+ $result_2 = $transfers->next; >+ $result_3 = $transfers->next; >+ is( >+ $result_1->branchtransfer_id, $transfer_1->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the oldest transfer request first' >+ ); >+ is( >+ $result_2->branchtransfer_id, $transfer_2->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the newer transfer request second' >+ ); >+ is( >+ $result_3->branchtransfer_id, $transfer_3->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the newest transfer request last' >+ ); >+ >+ $transfer_2->datesent( \'NOW()' )->store; >+ $prefetched_item = Koha::Items->search( >+ { 'me.itemnumber' => $item->itemnumber }, >+ { prefetch => ['current_branchtransfers'] } >+ )->next; >+ $transfers = $prefetched_item->get_transfers(); >+ is( >+ $transfers->count, 3, >+ 'When one transfer is set to in_transit, the Koha::Item::Transfers object still contains them all' >+ ); >+ $result_1 = $transfers->next; >+ $result_2 = $transfers->next; >+ $result_3 = $transfers->next; >+ is( >+ $result_1->branchtransfer_id, $transfer_2->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the active transfer request first' >+ ); >+ is( >+ $result_2->branchtransfer_id, $transfer_1->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the other transfers oldest to newest' >+ ); >+ is( >+ $result_3->branchtransfer_id, $transfer_3->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the other transfers oldest to newest' >+ ); >+ >+ $transfer_2->datearrived( \'NOW()' )->store; >+ $prefetched_item = Koha::Items->search( >+ { 'me.itemnumber' => $item->itemnumber }, >+ { prefetch => ['current_branchtransfers'] } >+ )->next; >+ $transfers = $prefetched_item->get_transfers(); >+ is( >+ $transfers->count, 2, >+ 'Once a transfer is received, it no longer appears in the list from ->get_transfers()' >+ ); >+ $result_1 = $transfers->next; >+ $result_2 = $transfers->next; >+ is( >+ $result_1->branchtransfer_id, $transfer_1->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the other transfers oldest to newest' >+ ); >+ is( >+ $result_2->branchtransfer_id, $transfer_3->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the other transfers oldest to newest' >+ ); >+ >+ $transfer_1->datecancelled( \'NOW()' )->store; >+ $prefetched_item = Koha::Items->search( >+ { 'me.itemnumber' => $item->itemnumber }, >+ { prefetch => ['current_branchtransfers'] } >+ )->next; >+ $transfers = $prefetched_item->get_transfers(); >+ is( >+ $transfers->count, 1, >+ 'Once a transfer is cancelled, it no longer appears in the list from ->get_transfers()' >+ ); >+ $result_1 = $transfers->next; >+ is( >+ $result_1->branchtransfer_id, $transfer_3->branchtransfer_id, >+ 'Koha::Item->get_transfers returns the only transfer that remains' >+ ); >+ }; >+ > $schema->storage->txn_rollback; > }; > >-- >2.43.0
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 35100
:
160514
|
160515
|
160557
|
160558
|
160575
|
160623
|
160628
|
160641
|
160642
|
160643
|
160647
|
160648
|
160687
|
160688
|
160689
|
160690
|
162740
|
162741
|
162742
|
162743
|
162744
|
162745
|
162746
|
162747
|
162757
|
162758
|
162759
|
162760
|
162761
|
162762
|
165096
|
165097
|
165098
|
165099
|
165100
|
165101
|
168273
|
168274
|
168275
|
168276
|
168277
|
168278
|
169347
|
169348
|
169349
|
169350
|
169351
|
169352
|
169353
|
171530
|
171531
|
171532
|
171533
|
171534
|
171535
|
171559
|
171560
|
171561
|
171562
|
171563
|
171564