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

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