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

(-)a/C4/Members.pm (-2 lines)
Lines 150-156 sub GetMemberDetails { Link Here
150
            SELECT borrowers.*,
150
            SELECT borrowers.*,
151
                   category_type,
151
                   category_type,
152
                   categories.description,
152
                   categories.description,
153
                   reservefee,
154
                   enrolmentperiod
153
                   enrolmentperiod
155
            FROM borrowers
154
            FROM borrowers
156
            LEFT JOIN categories ON borrowers.categorycode=categories.categorycode
155
            LEFT JOIN categories ON borrowers.categorycode=categories.categorycode
Lines 163-169 sub GetMemberDetails { Link Here
163
            SELECT borrowers.*,
162
            SELECT borrowers.*,
164
                   category_type,
163
                   category_type,
165
                   categories.description,
164
                   categories.description,
166
                   reservefee,
167
                   enrolmentperiod
165
                   enrolmentperiod
168
            FROM borrowers
166
            FROM borrowers
169
            LEFT JOIN categories ON borrowers.categorycode = categories.categorycode
167
            LEFT JOIN categories ON borrowers.categorycode = categories.categorycode
(-)a/opac/opac-reserve.pl (-3 / +3 lines)
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
- 

Return to bug 17578