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

(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 688-693 sub CanBookBeIssued { Link Here
688
    if ( $borrower->{'category_type'} eq 'X' && (  $item->{barcode}  )) { 
688
    if ( $borrower->{'category_type'} eq 'X' && (  $item->{barcode}  )) { 
689
    	# stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1  .
689
    	# stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1  .
690
        &UpdateStats(C4::Context->userenv->{'branch'},'localuse','','',$item->{'itemnumber'},$item->{'itemtype'},$borrower->{'borrowernumber'});
690
        &UpdateStats(C4::Context->userenv->{'branch'},'localuse','','',$item->{'itemnumber'},$item->{'itemtype'},$borrower->{'borrowernumber'});
691
        ModDateLastSeen( $item->{'itemnumber'} );
691
        return( { STATS => 1 }, {});
692
        return( { STATS => 1 }, {});
692
    }
693
    }
693
    if ( $borrower->{flags}->{GNA} ) {
694
    if ( $borrower->{flags}->{GNA} ) {
694
- 

Return to bug 4369