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

(-)a/C4/Circulation.pm (-2 / +2 lines)
Lines 375-384 sub transferbook { Link Here
375
    # That'll save a database query.
375
    # That'll save a database query.
376
    my ( $resfound, $resrec, undef ) =
376
    my ( $resfound, $resrec, undef ) =
377
      CheckReserves( $itemnumber );
377
      CheckReserves( $itemnumber );
378
    if ( $resfound and not $ignoreRs ) {
378
    if ( $resfound ) {
379
        $resrec->{'ResFound'} = $resfound;
379
        $resrec->{'ResFound'} = $resfound;
380
        $messages->{'ResFound'} = $resrec;
380
        $messages->{'ResFound'} = $resrec;
381
        $dotransfer = 1;
381
        $dotransfer = 0 unless $ignoreRs;
382
    }
382
    }
383
383
384
    #actually do the transfer....
384
    #actually do the transfer....
(-)a/circ/branchtransfers.pl (-2 lines)
Lines 127-133 defined $barcode and $barcode =~ s/^\s*|\s*$//g; # FIXME: barcodeInputFilter Link Here
127
if ($barcode) {
127
if ($barcode) {
128
128
129
    ( $transferred, $messages ) =
129
    ( $transferred, $messages ) =
130
131
        transferbook({
130
        transferbook({
132
            from_branch => C4::Context->userenv->{'branch'},
131
            from_branch => C4::Context->userenv->{'branch'},
133
            to_branch => $tobranchcd,
132
            to_branch => $tobranchcd,
134
- 

Return to bug 27064