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 |
- |
|
|