@@ -, +, @@ consistency --- C4/Circulation.pm | 2 +- C4/SIP/ILS/Transaction/Checkout.pm | 2 +- circ/branchtransfers.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++-- .../intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -1149,7 +1149,7 @@ sub CanBookBeIssued { } elsif ( $restype eq "Processing" ) { # The item is determined hold being processed for someone else. - $needsconfirmation{PROCESSED} = 1; + $needsconfirmation{PROCESSING} = 1; $needsconfirmation{'resfirstname'} = $patron->firstname; $needsconfirmation{'ressurname'} = $patron->surname; $needsconfirmation{'rescardnumber'} = $patron->cardnumber; --- a/C4/SIP/ILS/Transaction/Checkout.pm +++ a/C4/SIP/ILS/Transaction/Checkout.pm @@ -76,7 +76,7 @@ sub do_checkout { next; } elsif ($confirmation eq 'RESERVE_WAITING' or $confirmation eq 'TRANSFERRED' - or $confirmation eq 'PROCESSED') { + or $confirmation eq 'PROCESSING') { $debug and warn "Item is on hold for another patron."; $self->screen_msg("Item is on hold for another patron."); $noerror = 0; --- a/circ/branchtransfers.pl +++ a/circ/branchtransfers.pl @@ -224,7 +224,7 @@ $template->param( reserved => $reserved, waiting => $waiting, transferred => $hold_transferred, - processed => $hold_processed, + processing => $hold_processed, borrowernumber => $borrowernumber, itemnumber => $itemnumber, barcode => $barcode, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt @@ -50,7 +50,7 @@ - [% IF ( waiting or transferred or processed ) %] + [% IF ( waiting or transferred or processing ) %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -126,7 +126,7 @@
  • Item [% getTitleMessageIteminfo | html %] ([% getBarcodeMessageIteminfo | html %]) is on hold for [% resfirstname | html %] [% ressurname | html %] ([% rescardnumber | html %]) and being transferred to [% Branches.GetName( resbranchcode ) | html %]
  • [% END %] - [% IF ( PROCESSED ) %] + [% IF ( PROCESSING ) %]
  • Item [% getTitleMessageIteminfo | html %] ([% getBarcodeMessageIteminfo | html %]) is being processed for [% resfirstname | html %] [% ressurname | html %] ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %]
  • [% END %] @@ -254,7 +254,7 @@

    [% END %] - [% IF ( PROCESSED ) %] + [% IF ( PROCESSING ) %]


    --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -150,7 +150,7 @@ [% IF checkout_info.TRANSFERRED %]

  • This item is on hold and being transferred to another patron.
  • [% END %] - [% IF checkout_info.PROCESSED %] + [% IF checkout_info.PROCESSING %]
  • This item is on hold and being processed for another patron.
  • [% END %] [% IF checkout_info.ISSUED_TO_ANOTHER %] @@ -193,7 +193,7 @@ [% END %] - [% IF NOT checkout_info.IMPOSSIBLE && ( CAN_user_circulate_force_checkout || checkout_info.HIGHHOLDS ) && ( checkout_info.RESERVED || checkout_info.RESERVE_WAITING || checkout_info.TRANSFERRED || checkout_info.PROCESSED ) %] + [% IF NOT checkout_info.IMPOSSIBLE && ( CAN_user_circulate_force_checkout || checkout_info.HIGHHOLDS ) && ( checkout_info.RESERVED || checkout_info.RESERVE_WAITING || checkout_info.TRANSFERRED || checkout_info.PROCESSING ) %]
  • This item is on hold for another patron. The hold will be overridden, but not cancelled.
  • [% ELSIF checkout_info.RESERVED %]
  • This item is on hold for another patron.
  • --