Lines 85-92
if ( $patron->category->effective_BlockExpiredPatronOpacActions ) {
Link Here
|
85 |
} |
85 |
} |
86 |
|
86 |
|
87 |
# Pass through any reserve charge |
87 |
# Pass through any reserve charge |
88 |
if ($borr->{reservefee} > 0){ |
88 |
my $reservefee = $patron->category->reservefee; |
89 |
$template->param( RESERVE_CHARGE => sprintf("%.2f",$borr->{reservefee})); |
89 |
if ( $reservefee > 0){ |
|
|
90 |
$template->param( RESERVE_CHARGE => sprintf("%.2f",$reservefee)); |
90 |
} |
91 |
} |
91 |
|
92 |
|
92 |
my $itemTypes = GetItemTypes(); |
93 |
my $itemTypes = GetItemTypes(); |
93 |
- |
|
|