@@ -, +, @@ - Set rental charge for an item type - Define a rental discount for that item type in the circ rules - check in an item matching this rule --- members/summary-print.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/members/summary-print.pl +++ a/members/summary-print.pl @@ -67,7 +67,7 @@ $template->param( accounts => $accts, totaldue => $total, - issues => build_issue_data( GetPendingIssues($borrowernumber) ), + issues => build_issue_data( $borrowernumber ), totalprice => $totalprice, reserves => build_reserve_data( $holds_rs ), @@ -76,7 +76,8 @@ $template->param( output_html_with_http_headers $input, $cookie, $template->output; sub build_issue_data { - my $issues = shift; + my ( $borrowernumber ) = @_; + my $issues = GetPendingIssues( $borrowernumber ); my $return = []; --