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