Lines 35-40
use Koha::AuthorisedValues;
Link Here
|
35 |
use Koha::Holds; |
35 |
use Koha::Holds; |
36 |
use Koha::Items; |
36 |
use Koha::Items; |
37 |
use Koha::Patrons; |
37 |
use Koha::Patrons; |
|
|
38 |
use Koha::Checkouts; |
38 |
|
39 |
|
39 |
############################################### |
40 |
############################################### |
40 |
# Getting state |
41 |
# Getting state |
Lines 220-225
foreach my $code ( keys %$messages ) {
Link Here
|
220 |
|
221 |
|
221 |
# use Data::Dumper; |
222 |
# use Data::Dumper; |
222 |
# warn "FINAL ============= ".Dumper(@trsfitemloop); |
223 |
# warn "FINAL ============= ".Dumper(@trsfitemloop); |
|
|
224 |
|
225 |
my $pending_checkout_notes = Koha::Checkouts->search({ noteseen => 0 })->count; |
226 |
|
223 |
$template->param( |
227 |
$template->param( |
224 |
found => $found, |
228 |
found => $found, |
225 |
reserved => $reserved, |
229 |
reserved => $reserved, |
Lines 234-240
$template->param(
Link Here
|
234 |
setwaiting => $setwaiting, |
238 |
setwaiting => $setwaiting, |
235 |
trsfitemloop => \@trsfitemloop, |
239 |
trsfitemloop => \@trsfitemloop, |
236 |
errmsgloop => \@errmsgloop, |
240 |
errmsgloop => \@errmsgloop, |
237 |
CircAutocompl => C4::Context->preference("CircAutocompl") |
241 |
CircAutocompl => C4::Context->preference("CircAutocompl"), |
|
|
242 |
pending_checkout_notes => $pending_checkout_notes, |
238 |
); |
243 |
); |
239 |
|
244 |
|
240 |
# Checking if there is a Fast Cataloging Framework |
245 |
# Checking if there is a Fast Cataloging Framework |