View | Details | Raw Unified | Return to bug 33641
Collapse All | Expand All

(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 2646-2651 sub MarkIssueReturned { Link Here
2646
            $issue->returndate( \'NOW()' )->store->discard_changes; # update and refetch
2646
            $issue->returndate( \'NOW()' )->store->discard_changes; # update and refetch
2647
        }
2647
        }
2648
2648
2649
        $issue->return_branch(C4::Context->userenv->{'branch'});
2649
        # Create the old_issues entry
2650
        # Create the old_issues entry
2650
        my $old_checkout = Koha::Old::Checkout->new($issue->unblessed)->store;
2651
        my $old_checkout = Koha::Old::Checkout->new($issue->unblessed)->store;
2651
2652
2652
- 

Return to bug 33641