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