|
Lines 74-80
$template->param(
Link Here
|
| 74 |
accounts => $accts, |
74 |
accounts => $accts, |
| 75 |
totaldue => $total_format, |
75 |
totaldue => $total_format, |
| 76 |
|
76 |
|
| 77 |
issues => build_issue_data( GetPendingIssues($borrowernumber) ), |
77 |
issues => build_issue_data( $borrowernumber ), |
| 78 |
totalprice => $totalprice, |
78 |
totalprice => $totalprice, |
| 79 |
|
79 |
|
| 80 |
reserves => build_reserve_data( $holds_rs ), |
80 |
reserves => build_reserve_data( $holds_rs ), |
|
Lines 83-89
$template->param(
Link Here
|
| 83 |
output_html_with_http_headers $input, $cookie, $template->output; |
83 |
output_html_with_http_headers $input, $cookie, $template->output; |
| 84 |
|
84 |
|
| 85 |
sub build_issue_data { |
85 |
sub build_issue_data { |
| 86 |
my $issues = shift; |
86 |
my ( $borrowernumber ) = @_; |
|
|
87 |
my $issues = GetPendingIssues( $borrowernumber ); |
| 87 |
|
88 |
|
| 88 |
my $return = []; |
89 |
my $return = []; |
| 89 |
|
90 |
|
| 90 |
- |
|
|