Lines 125-130
unless ( $logged_in_user->has_permission( { parameters => 'manage_background_job
Link Here
|
125 |
$template->param( already_ran_jobs => $already_ran_jobs ); |
125 |
$template->param( already_ran_jobs => $already_ran_jobs ); |
126 |
} |
126 |
} |
127 |
|
127 |
|
|
|
128 |
my $holds_with_cancellation_requests = Koha::Holds->waiting->search()->filter_by_has_cancellation_requests->count; |
129 |
|
128 |
if ( C4::Context->preference('CurbsidePickup') ) { |
130 |
if ( C4::Context->preference('CurbsidePickup') ) { |
129 |
$template->param( |
131 |
$template->param( |
130 |
new_curbside_pickups => Koha::CurbsidePickups->search( |
132 |
new_curbside_pickups => Koha::CurbsidePickups->search( |
Lines 141-147
$template->param(
Link Here
|
141 |
pending_borrower_modifications => $pending_borrower_modifications, |
143 |
pending_borrower_modifications => $pending_borrower_modifications, |
142 |
pending_discharge_requests => $pending_discharge_requests, |
144 |
pending_discharge_requests => $pending_discharge_requests, |
143 |
pending_article_requests => $pending_article_requests, |
145 |
pending_article_requests => $pending_article_requests, |
144 |
pending_problem_reports => $pending_problem_reports |
146 |
pending_problem_reports => $pending_problem_reports, |
|
|
147 |
holds_with_cancellation_requests => $holds_with_cancellation_requests, |
145 |
); |
148 |
); |
146 |
|
149 |
|
147 |
output_html_with_http_headers $query, $cookie, $template->output; |
150 |
output_html_with_http_headers $query, $cookie, $template->output; |
148 |
- |
|
|