https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40771

            Bug ID: 40771
           Summary: Wrong transfer breaking check in for holds when using
                    library transfer limits
 Change sponsored?: ---
           Product: Koha
           Version: Main
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P5 - low
         Component: Circulation
          Assignee: [email protected]
          Reporter: [email protected]
        QA Contact: [email protected]
                CC: [email protected], [email protected]

Bug 39750 fixed the case of a transfer with no hold - it seems the same problem
can occur when the transfer is for a hold:


Line 178 of returns.pl
        my $hold = Koha::Holds->find($reserve_id);
        if ($diffBranchSend) {
            my $tobranch = $hold->pickup_library();

            # Add transfer, enqueue if one is already in the queue, and
immediately set to in transit
            my $transfer = $item->request_transfer( { to => $tobranch, reason
=> 'Reserve', enqueue => 1 } );
            $transfer->transit;
        }

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to