|
Lines 67-73
$template->param(
Link Here
|
| 67 |
accounts => $accts, |
67 |
accounts => $accts, |
| 68 |
totaldue => $total, |
68 |
totaldue => $total, |
| 69 |
|
69 |
|
| 70 |
issues => build_issue_data( GetPendingIssues($borrowernumber) ), |
70 |
issues => build_issue_data( $borrowernumber ), |
| 71 |
totalprice => $totalprice, |
71 |
totalprice => $totalprice, |
| 72 |
|
72 |
|
| 73 |
reserves => build_reserve_data( $holds_rs ), |
73 |
reserves => build_reserve_data( $holds_rs ), |
|
Lines 76-82
$template->param(
Link Here
|
| 76 |
output_html_with_http_headers $input, $cookie, $template->output; |
76 |
output_html_with_http_headers $input, $cookie, $template->output; |
| 77 |
|
77 |
|
| 78 |
sub build_issue_data { |
78 |
sub build_issue_data { |
| 79 |
my $issues = shift; |
79 |
my ( $borrowernumber ) = @_; |
|
|
80 |
my $issues = GetPendingIssues( $borrowernumber ); |
| 80 |
|
81 |
|
| 81 |
my $return = []; |
82 |
my $return = []; |
| 82 |
|
83 |
|
| 83 |
- |
|
|