|
Lines 93-99
my $pending_borrower_modifications = Koha::Patron::Modifications->pending_count(
Link Here
|
| 93 |
my $pending_discharge_requests = Koha::Patron::Discharge::count({ pending => 1 }); |
93 |
my $pending_discharge_requests = Koha::Patron::Discharge::count({ pending => 1 }); |
| 94 |
my $pending_article_requests = Koha::ArticleRequests->search_limited( |
94 |
my $pending_article_requests = Koha::ArticleRequests->search_limited( |
| 95 |
{ |
95 |
{ |
| 96 |
status => Koha::ArticleRequest::Status::Pending, |
96 |
status => Koha::ArticleRequest::Status::Requested, |
| 97 |
$branch ? ( 'me.branchcode' => $branch ) : (), |
97 |
$branch ? ( 'me.branchcode' => $branch ) : (), |
| 98 |
} |
98 |
} |
| 99 |
)->count; |
99 |
)->count; |
| 100 |
- |
|
|