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

(-)a/C4/Circulation.pm (-5 / +5 lines)
Lines 4027-4033 sub ProcessOfflineOperation { Link Here
4027
    if ( $operation->{action} eq 'return' ) {
4027
    if ( $operation->{action} eq 'return' ) {
4028
        $report = ProcessOfflineReturn( $operation );
4028
        $report = ProcessOfflineReturn( $operation );
4029
    } elsif ( $operation->{action} eq 'issue' ) {
4029
    } elsif ( $operation->{action} eq 'issue' ) {
4030
        $report = ProcessOfflineIssue( $operation );
4030
        ( $report ) = ProcessOfflineIssue( $operation );
4031
    } elsif ( $operation->{action} eq 'payment' ) {
4031
    } elsif ( $operation->{action} eq 'payment' ) {
4032
        $report = ProcessOfflinePayment( $operation );
4032
        $report = ProcessOfflinePayment( $operation );
4033
    }
4033
    }
Lines 4085-4099 sub ProcessOfflineIssue { Link Here
4085
                $operation->{timestamp},
4085
                $operation->{timestamp},
4086
            );
4086
            );
4087
        }
4087
        }
4088
        AddIssue(
4088
        my $checkout = AddIssue(
4089
            $patron->unblessed,
4089
            $patron->unblessed,
4090
            $operation->{'barcode'},
4090
            $operation->{barcode},
4091
            undef,
4091
            $operation->{due_date},
4092
            undef,
4092
            undef,
4093
            $operation->{timestamp},
4093
            $operation->{timestamp},
4094
            undef,
4094
            undef,
4095
        );
4095
        );
4096
        return "Success.";
4096
        return ( "Success.", $checkout );
4097
    } else {
4097
    } else {
4098
        return "Borrower not found.";
4098
        return "Borrower not found.";
4099
    }
4099
    }
(-)a/C4/SIP/ILS/Transaction/Checkout.pm (-3 / +4 lines)
Lines 134-144 sub do_checkout { Link Here
134
134
135
    if ( $no_block_due_date ) {
135
    if ( $no_block_due_date ) {
136
        $overridden_duedate = $no_block_due_date;
136
        $overridden_duedate = $no_block_due_date;
137
        ProcessOfflineIssue({
137
        my ( $msg, $checkout ) = ProcessOfflineIssue({
138
            cardnumber => $patron->cardnumber,
138
            cardnumber => $patron->cardnumber,
139
            barcode    => $barcode,
139
            barcode    => $barcode,
140
            timestamp  => $no_block_due_date,
140
            due_date   => $no_block_due_date,
141
            timestamp  => dt_from_string,
141
        });
142
        });
143
        $self->{due} = $self->duedatefromissue($checkout, $itemnumber);
142
    } else {
144
    } else {
143
        # can issue
145
        # can issue
144
        my $issue = AddIssue( $patron->unblessed, $barcode, $overridden_duedate, 0 );
146
        my $issue = AddIssue( $patron->unblessed, $barcode, $overridden_duedate, 0 );
145
- 

Return to bug 32934