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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 928-934 sub CanBookBeIssued { Link Here
928
928
929
    if ( $rentalConfirmation ){
929
    if ( $rentalConfirmation ){
930
        my ($rentalCharge) = GetIssuingCharges( $item->{'itemnumber'}, $borrower->{'borrowernumber'} );
930
        my ($rentalCharge) = GetIssuingCharges( $item->{'itemnumber'}, $borrower->{'borrowernumber'} );
931
        if ( $rentalCharge ){
931
        if ( $rentalCharge > 0 ){
932
            $rentalCharge = sprintf("%.02f", $rentalCharge);
932
            $rentalCharge = sprintf("%.02f", $rentalCharge);
933
            $needsconfirmation{RENTALCHARGE} = $rentalCharge;
933
            $needsconfirmation{RENTALCHARGE} = $rentalCharge;
934
        }
934
        }
935
- 

Return to bug 13461