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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-2 / +2 lines)
Lines 130-138 Link Here
130
                        [% IF (RESERVE_CHARGE) %]
130
                        [% IF (RESERVE_CHARGE) %]
131
                            <div class="alert" id="reserve_fee">
131
                            <div class="alert" id="reserve_fee">
132
                                [% IF Koha.Preference('HoldFeeMode') == 'any_time_is_collected' %]
132
                                [% IF Koha.Preference('HoldFeeMode') == 'any_time_is_collected' %]
133
                                    You will be charged a hold fee of [% RESERVE_CHARGE | html %] when you collect this item
133
                                    You will be charged a hold fee of [% RESERVE_CHARGE | $Price %] when you collect this item
134
                                [% ELSE %]
134
                                [% ELSE %]
135
                                    You will be charged a hold fee of [% RESERVE_CHARGE | html %] for placing this hold
135
                                    You will be charged a hold fee of [% RESERVE_CHARGE | $Price %] for placing this hold
136
                                [% END %]
136
                                [% END %]
137
                            </div>
137
                            </div>
138
                        [% END %]
138
                        [% END %]
(-)a/opac/opac-reserve.pl (-2 / +1 lines)
Lines 101-107 if ( $patron->category->effective_BlockExpiredPatronOpacActions ) { Link Here
101
# Pass through any reserve charge
101
# Pass through any reserve charge
102
my $reservefee = $patron->category->reservefee;
102
my $reservefee = $patron->category->reservefee;
103
if ( $reservefee > 0){
103
if ( $reservefee > 0){
104
    $template->param( RESERVE_CHARGE => sprintf("%.2f",$reservefee));
104
    $template->param( RESERVE_CHARGE => $reservefee);
105
}
105
}
106
106
107
my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
107
my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
108
- 

Return to bug 22118