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

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

Return to bug 33641