From 52df9460fd985700ab218b1f0e22eb3267892e8a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 11 Mar 2025 12:13:21 +0100 Subject: [PATCH] Bug 39302: Fix logic flaw in the display count of checkins Checkins can disappear from the checkin list if transfer modal is triggered. There is a flaw in the logic of the checkin code: we keep 20 (default value for numReturnedItemsToShow) checkins in the table, but there can be shift in the "counter" logic when the transfer modal is triggered. This patch is removing the different hashes and use a single @checkins array to pass to the template. When a item is checked in, it is inserted at the beginning of the list (unshift). Koha::Objects are passed for patron, item and biblio to improve the readability (and maintenance cost) of the code. Test plan: Generate several checkouts (see below) Some should generate the transfer modal Check them in => Without this patch notice that at some point there will be a problem in the list, some checkins will be missing. => With this patch applied the checkin list always contain the last 20 checkins (or whatever is the value of numReturnedItemsToShow, or "8" if pref is empty, don't ask why 8!) Code to generate 50 checkouts (all overdue): ``` use C4::Circulation qw( AddIssue ); use Koha::Items; use Koha::Patrons; use t::lib::Mocks; use Koha::DateUtils qw(dt_from_string); my $patron = Koha::Patrons->find(51); t::lib::Mocks::mock_userenv({patron => $patron}); my $items = Koha::Items->search; my $patron_unblessed = $patron->unblessed; my $i; while ( my $item = $items->next ) { my $due = dt_from_string->subtract(days => 45 + rand(45))->set_hour(23)->set_minute(59)->set_second(00); AddIssue($patron, $item->barcode, $due); last if ++$i >= 50; } ``` Then retrieve the barcodes: > SELECT items.barcode FROM issues LEFT JOIN items ON items.itemnumber=issues.itemnumber; QA: 1. Do not be afraid by the length of this patch, most of the changes are variable renames. 2. return_overdue is now only calculated once per checkin (per page load, could be improved) 3. date formatting is done template-side --- circ/returns.pl | 179 ++++---------- .../prog/en/modules/circ/returns.tt | 225 ++++++++++-------- 2 files changed, 168 insertions(+), 236 deletions(-) diff --git a/circ/returns.pl b/circ/returns.pl index 11b0795ad7f..ec642dbd660 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -98,46 +98,17 @@ my $overduecharges = ( C4::Context->preference('finesMode') && C4::Context->pref my $returned_counter = C4::Context->preference('numReturnedItemsToShow') || 8; # Set up the item stack .... -my %returneditems; -my %riduedate; -my %riborrowernumber; -my %rinot_returned; -my @inputloop; -foreach ( $query->param ) { - my $counter; - if (/ri-(\d*)/) { - $counter = $1; - if ( $counter > $returned_counter ) { - next; - } - } else { - next; - } - - my %input; - my $barcode = $query->param("ri-$counter"); - my $duedate = $query->param("dd-$counter"); - my $borrowernumber = $query->param("bn-$counter"); - my $not_returned = $query->param("nr-$counter"); - $counter++; - - # decode barcode ## Didn't we already decode them before passing them back last time?? - $barcode = barcodedecode($barcode) if $barcode; - - ###################### - #Are these lines still useful ? - $returneditems{$counter} = $barcode; - $riduedate{$counter} = $duedate; - $riborrowernumber{$counter} = $borrowernumber; - $rinot_returned{$counter} = $not_returned; - - ####################### - $input{counter} = $counter; - $input{barcode} = $barcode; - $input{duedate} = $duedate; - $input{borrowernumber} = $borrowernumber; - $input{not_returned} = $not_returned; - push( @inputloop, \%input ); +my @checkins; +my $i; +for my $counter ( $query->multi_param("checkin_counter") ) { + push @checkins, { + barcode => scalar $query->param("checkin_barcode_$counter"), + duedate => scalar $query->param("checkin_duedate_$counter"), + borrowernumber => scalar $query->param("checkin_borrowernumber_$counter"), + not_returned => scalar $query->param("checkin_not_returned_$counter"), + }; + + last if ++$i >= $returned_counter; } my $op = $query->param('op') // ''; @@ -384,22 +355,14 @@ if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) { unless ( $needs_confirm || $bundle_confirm ); if ($returned) { - my $time_now = dt_from_string()->truncate( to => 'minute' ); my $date_due_dt = dt_from_string( $issue->date_due, 'sql' ); - my $duedate = $date_due_dt->strftime('%Y-%m-%d %H:%M'); - $returneditems{0} = $barcode; - $riborrowernumber{0} = $borrower->{'borrowernumber'}; - $riduedate{0} = $duedate; - $rinot_returned{0} = 0; - $input{borrowernumber} = $borrower->{'borrowernumber'}; - $input{duedate} = $duedate; - unless ($dropboxmode) { - $input{return_overdue} = 1 if ( DateTime->compare( $date_due_dt, dt_from_string() ) == -1 ); - } else { - $input{return_overdue} = 1 if ( DateTime->compare( $date_due_dt, $dropboxdate ) == -1 ); - } - push( @inputloop, \%input ); + unshift @checkins, { + barcode => $barcode, + duedate => $issue ? $issue->date_due : undef, + borrowernumber => $issue ? $issue->borrowernumber : undef, + not_returned => 0, + }; if ( C4::Context->preference("FineNotifyAtCheckin") ) { my $patron = Koha::Patrons->find( $borrower->{borrowernumber} ); @@ -431,19 +394,12 @@ if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) { and !$needs_confirm and !$bundle_confirm ) { - my $duedate = 0; - if ($issue) { - my $date_due_dt = dt_from_string( $issue->date_due, 'sql' ); - $duedate = $date_due_dt->strftime('%Y-%m-%d %H:%M'); - $input{borrowernumber} = $issue->borrowernumber; - $riborrowernumber{0} = $borrower->{'borrowernumber'}; - } - $input{duedate} = $duedate; - $input{not_returned} = 1; - $rinot_returned{0} = 1; - $returneditems{0} = $barcode; - $riduedate{0} = $duedate; - push( @inputloop, \%input ); + unshift @checkins, { + barcode => $barcode, + duedate => $issue ? $issue->date_due : undef, + borrowernumber => $issue ? $issue->borrowernumber : undef, + not_returned => 1, + }; } $template->param( privacy => $borrower->{privacy} ); @@ -543,7 +499,7 @@ if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) { ); } } -$template->param( inputloop => \@inputloop ); +$template->param( checkins => \@checkins ); my $found = 0; my $waiting = 0; @@ -788,81 +744,42 @@ foreach my $code ( keys %$messages ) { } $template->param( errmsgloop => \@errmsgloop ); -my $count = 0; -my @riloop; my $shelflocations = { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' } ) }; -foreach ( sort { $a <=> $b } keys %returneditems ) { - my %ri; - if ( $count++ < $returned_counter ) { - my $bar_code = $returneditems{$_}; - if ( $riduedate{$_} ) { - my $duedate = dt_from_string( $riduedate{$_}, 'sql' ); - $ri{year} = $duedate->year(); - $ri{month} = $duedate->month(); - $ri{day} = $duedate->day(); - $ri{hour} = $duedate->hour(); - $ri{minute} = $duedate->minute(); - $ri{duedate} = $duedate; - my $patron = Koha::Patrons->find( $riborrowernumber{$_} ); - - unless ($dropboxmode) { - $ri{return_overdue} = 1 if ( DateTime->compare( $duedate, dt_from_string() ) == -1 ); - } else { - $ri{return_overdue} = 1 if ( DateTime->compare( $duedate, $dropboxdate ) == -1 ); - } - $ri{patron} = $patron, - $ri{borissuescount} = $patron->checkouts->count; - } else { - $ri{borrowernumber} = $riborrowernumber{$_}; - } +for my $checkin (@checkins) { + my $item = Koha::Items->find( { barcode => $checkin->{barcode} } ); + next unless $item; # FIXME The item has been deleted in the meantime, + # we could handle that better displaying a message in the template - my $item = Koha::Items->find( { barcode => $bar_code } ); - next unless $item; # FIXME The item has been deleted in the meantime, - # we could handle that better displaying a message in the template + if ( $checkin->{duedate} ) { + my $duedate = dt_from_string( $checkin->{duedate}, 'sql' ); + my $patron = Koha::Patrons->find( $checkin->{borrowernumber} ); - $ri{not_returned} = $rinot_returned{$_}; - my $biblio = $item->biblio; + my $return_overdue; + unless ($dropboxmode) { + $return_overdue = 1 if ( DateTime->compare( $duedate, dt_from_string() ) == -1 ); + } else { + $return_overdue = 1 if ( DateTime->compare( $duedate, $dropboxdate ) == -1 ); + } + $checkin->{return_overdue} = $return_overdue; + $checkin->{patron} = $patron; + } - # FIXME pass $item to the template and we are done here... - $ri{itembiblionumber} = $biblio->biblionumber; - $ri{itemtitle} = $biblio->title; - $ri{subtitle} = $biblio->subtitle; - $ri{part_name} = $biblio->part_name; - $ri{part_number} = $biblio->part_number; - $ri{itemauthor} = $biblio->author; - $ri{itemcallnumber} = $item->itemcallnumber; - $ri{dateaccessioned} = $item->dateaccessioned; - $ri{recordtype} = $biblio->itemtype; - $ri{itemtype} = $item->itype; - $ri{itemnote} = $item->itemnotes; - $ri{itemnotes_nonpublic} = $item->itemnotes_nonpublic; - $ri{ccode} = $item->ccode; - $ri{enumchron} = $item->enumchron; - $ri{itemnumber} = $item->itemnumber; - $ri{barcode} = $bar_code; - $ri{homebranch} = $item->homebranch; - $ri{transferbranch} = $item->get_transfer ? $item->get_transfer->tobranch : ''; - $ri{damaged} = $item->damaged; - $ri{withdrawn} = $item->withdrawn; - $ri{transferreason} = $item->get_transfer ? $item->get_transfer->reason : ''; - - $ri{location} = $item->location; - my $shelfcode = $ri{'location'}; - $ri{'location'} = $shelflocations->{$shelfcode} - if ( defined($shelfcode) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) ); + my $biblio = $item->biblio; + $checkin->{biblio} = $item->biblio; - } else { - last; - } - push @riloop, \%ri; + # TODO Move this logic somehwere else + $checkin->{item_location} = $item->location; + my $shelfcode = $checkin->{item_location}; + $checkin->{item_location} = $shelflocations->{$shelfcode} + if ( defined($shelfcode) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) ); } $template->param( - riloop => \@riloop, + checkins => \@checkins, errmsgloop => \@errmsgloop, exemptfine => $exemptfine, dropboxmode => $dropboxmode, 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 ce5205b1ced..d2b1f676784 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -447,11 +447,12 @@ - [% FOREACH inputloo IN inputloop %] - - - - + [% FOREACH checkin IN checkins %] + + + + + [% END %] @@ -531,11 +532,12 @@ - [% FOREACH inputloo IN inputloop %] - - - - + [% FOREACH checkin IN checkins %] + + + + + [% END %] [% IF item.onloan %] @@ -601,11 +603,12 @@ - [% FOREACH inputloo IN inputloop %] - - - - + [% FOREACH checkin IN checkins %] + + + + + [% END %] @@ -919,11 +925,12 @@

Hold at [% Branches.GetName( destbranch ) | html %]

[% END %] - [% FOREACH inputloo IN inputloop %] - - - - + [% FOREACH checkin IN checkins %] + + + + + [% END %] @@ -1175,13 +1182,15 @@ - - [% FOREACH inputloo IN inputloop %] - - - - + [% FOREACH checkin IN checkins %] + + + + + [% END %] + +
@@ -1271,7 +1280,7 @@ - [% IF ( riloop ) %] + [% IF ( checkins.size ) %]

Checked-in items

@@ -1295,121 +1304,127 @@ - [% FOREACH riloo IN riloop %] + [% FOREACH checkin IN checkins %] - + - - + + [% SET transfer = checkin.item.get_transfer %] + - - - - - + + + + + - [% END # /FOREACH riloo %] + [% END # /FOREACH checkins %]
- [% IF ( riloo.not_returned AND riloo.duedate ) %] + [% IF ( checkin.not_returned AND checkin.duedate ) %] Item was not checked in [% END %] - [% IF ( riloo.duedate ) %] - [% IF ( riloo.return_overdue ) %] - [% riloo.duedate | $KohaDates as_due_date => 1 %] (overdue) + [% IF ( checkin.duedate ) %] + [% IF ( checkin.return_overdue ) %] + [% checkin.duedate | $KohaDates as_due_date => 1 %] (overdue) [% ELSE %] - [% riloo.duedate | $KohaDates as_due_date => 1 %] + [% checkin.duedate | $KohaDates as_due_date => 1 %] [% END %] [% ELSE %] Not checked out [% END %] - [% IF ( riloo.damaged ) %] - [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.damaged', authorised_value => riloo.damaged ) | html %] + [% IF ( checkin.item.damaged ) %] + [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.damaged', authorised_value => checkin.item.damaged ) | html %] [% END %] - [% IF ( riloo.withdrawn ) %] - [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => riloo.withdrawn ) | html %] + [% IF ( checkin.item.withdrawn ) %] + [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => checkin.item.withdrawn ) | html %] [% END %] - - [% riloo.itemtitle | html %] + + [% checkin.biblio.title | html %] - [% FOREACH subtitle IN riloo.subtitle.split(' \\| ') %] [% subtitle | html %][% END %] - [% FOREACH part_number IN riloo.part_number.split(' \\| ') %] [% part_number | html %][% END %] - [% FOREACH part_name IN riloo.part_name.split(' \\| ') %] [% part_name | html %][% END %] - + [% FOREACH subtitle IN checkin.biblio.subtitle.split(' \\| ') %] [% subtitle | html %][% END %] + [% FOREACH part_number IN checkin.biblio.part_number.split(' \\| ') %] [% part_number | html %][% END %] + [% FOREACH part_name IN checkin.biblio.part_name.split(' \\| ') %] [% part_name | html %][% END %] + - [% IF ( riloo.enumchron ) %] + [% IF ( checkin.item.enumchron ) %]
- [% riloo.enumchron | html %] + [% checkin.item.enumchron | html %] [% END %]
[% riloo.itemauthor | html %][% checkin.biblio.author | html %] - [% riloo.barcode | html %] + [% checkin.barcode | html %] [% Branches.GetName( riloo.homebranch ) | html %] [% Branches.GetName( riloo.transferbranch ) | html %] [% Branches.GetName( checkin.item.homebranch ) | html %] [% IF transfer %][% Branches.GetName( transfer.tobranch ) | html %][% END %] - [%- SWITCH riloo.transferreason -%] - - [%- CASE 'Manual' -%] - Manual - [%- CASE 'StockrotationAdvance' -%] - Stock rotation advance - [%- CASE 'StockrotationRepatriation' -%] - Stock rotation repatriation - [%- CASE 'ReturnToHome' -%] - Return to home library - [%- CASE 'ReturnToHolding' -%] - Return to holding library - [%- CASE 'RotatingCollection' -%] - Rotating collection - [%- CASE 'Reserve' -%] - Hold - [%- CASE 'LostReserve' -%] - Lost hold - [%- CASE 'CancelReserve' -%] - Cancelled hold - [%- CASE 'TransferCancellation' -%] - Transfer was cancelled whilst in transit - [%- CASE 'Recall' -%] - Recall - [%- CASE 'RecallCancellation' -%] - Cancelled recall + [% IF transfer %] + [%- SWITCH transfer.reason -%] + + [%- CASE 'Manual' -%] + Manual + [%- CASE 'StockrotationAdvance' -%] + Stock rotation advance + [%- CASE 'StockrotationRepatriation' -%] + Stock rotation repatriation + [%- CASE 'ReturnToHome' -%] + Return to home library + [%- CASE 'ReturnToHolding' -%] + Return to holding library + [%- CASE 'RotatingCollection' -%] + Rotating collection + [%- CASE 'Reserve' -%] + Hold + [%- CASE 'LostReserve' -%] + Lost hold + [%- CASE 'CancelReserve' -%] + Cancelled hold + [%- CASE 'TransferCancellation' -%] + Transfer was cancelled whilst in transit + [%- CASE 'Recall' -%] + Recall + [%- CASE 'RecallCancellation' -%] + Cancelled recall + [%- END -%] [%- END -%] - [% riloo.location | html %] + [% checkin.item_location | html %] [% riloo.itemcallnumber | html %] [% riloo.dateaccessioned | $KohaDates %] [% ItemTypes.GetDescription( riloo.recordtype ) | html %] [% ItemTypes.GetDescription( riloo.itemtype ) | html %] [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => riloo.ccode) | html %] [% checkin.item.itemcallnumber | html %] [% checkin.item.dateaccessioned | $KohaDates %] [% ItemTypes.GetDescription( checkin.biblio.itemtype ) | html %] [% ItemTypes.GetDescription( checkin.item.itype ) | html %] [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => checkin.item.ccode) | html %] - [% IF ( riloo.duedate ) %] - [% INCLUDE 'patron-title.inc' patron=riloo.patron hide_patron_infos_if_needed=1 invert_name=1 %] - [% IF riloo.borissuescount %] + [% IF ( checkin.duedate ) %] + [% INCLUDE 'patron-title.inc' patron=checkin.patron hide_patron_infos_if_needed=1 invert_name=1 %] + [% SET issues_count = checkin.patron.checkouts.count %] + [% IF issues_count %] Checkouts: - [% riloo.borissuescount | html %] + [% issues_count | html %] [% END %] - [% IF riloo.patron.privacy < 2 %] + [% IF checkin.patron.privacy < 2 %] [%# 2 is the privacy rule "Never" (Delete my history immediately) %] - Print checkin slip + Print checkin slip [% END %] [% ELSE %] Not checked out [% END %] - [% IF ( riloo.patron.borrowernotes ) %] -

[% riloo.patron.borrowernotes | $raw | html_line_break %]

+ [% IF ( checkin.patron.borrowernotes ) %] +

[% checkin.patron.borrowernotes | $raw | html_line_break %]

[% END %] - [% IF ( riloo.itemnote ) %] -

[% riloo.itemnote | html %]

+ [% IF ( checkin.item.itemnotes ) %] +

[% checkin.item.itemnotes | html %]

[% END %] - [% IF ( riloo.itemnotes_nonpublic ) %] -

[% riloo.itemnotes_nonpublic | html %]

+ [% IF ( checkin.item.itemnotes_nonpublic ) %] +

[% checkin.item.itemnotes_nonpublic | html %]

[% END %]
- [% END # /IF riloop %] + [% END # /IF checkins.count %] [% END %] [% IF ( ReturnClaims ) %] -- 2.34.1