Merge remote-tracking branch 'kc/new/bug_5616' into kcmaster
[koha.git] / circ / returns.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #           2006 SAN-OP
5 #           2007-2010 BibLibre, Paul POULAIN
6 #           2010 Catalyst IT
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23 =head1 returns.pl
24
25 script to execute returns of books
26
27 =cut
28
29 use strict;
30 #use warnings; FIXME - Bug 2505
31
32 use CGI;
33 use C4::Context;
34 use C4::Auth qw/:DEFAULT get_session/;
35 use C4::Output;
36 use C4::Circulation;
37 use C4::Dates qw/format_date/;
38 use Date::Calc qw/Add_Delta_Days/;
39 use C4::Calendar;
40 use C4::Print;
41 use C4::Reserves;
42 use C4::Biblio;
43 use C4::Items;
44 use C4::Members;
45 use C4::Branch; # GetBranches GetBranchName
46 use C4::Koha;   # FIXME : is it still useful ?
47 use C4::RotatingCollections;
48
49 my $query = new CGI;
50
51 if (!C4::Context->userenv){
52     my $sessionID = $query->cookie("CGISESSID");
53     my $session = get_session($sessionID);
54     if ($session->param('branch') eq 'NO_LIBRARY_SET'){
55         # no branch set we can't return
56         print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
57         exit;
58     }
59
60
61 #getting the template
62 my ( $template, $librarian, $cookie ) = get_template_and_user(
63     {
64         template_name   => "circ/returns.tmpl",
65         query           => $query,
66         type            => "intranet",
67         authnotrequired => 0,
68         flagsrequired   => { circulate => "circulate_remaining_permissions" },
69     }
70 );
71
72 #####################
73 #Global vars
74 my $branches = GetBranches();
75 my $printers = GetPrinters();
76
77 my $printer = C4::Context->userenv ? C4::Context->userenv->{'branchprinter'} : "";
78 my $overduecharges = (C4::Context->preference('finesMode') && C4::Context->preference('finesMode') ne 'off');
79
80 my $userenv_branch = C4::Context->userenv->{'branch'} || '';
81 #
82 # Some code to handle the error if there is no branch or printer setting.....
83 #
84
85 # Set up the item stack ....
86 my %returneditems;
87 my %riduedate;
88 my %riborrowernumber;
89 my @inputloop;
90 foreach ( $query->param ) {
91     my $counter;
92     if (/ri-(\d*)/) {
93         $counter = $1;
94         if ($counter > 20) {
95             next;
96         }
97     }
98     else {
99         next;
100     }
101
102     my %input;
103     my $barcode        = $query->param("ri-$counter");
104     my $duedate        = $query->param("dd-$counter");
105     my $borrowernumber = $query->param("bn-$counter");
106     $counter++;
107
108     # decode barcode    ## Didn't we already decode them before passing them back last time??
109     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
110     $barcode = barcodedecode($barcode) if(C4::Context->preference('itemBarcodeInputFilter'));
111
112     ######################
113     #Are these lines still useful ?
114     $returneditems{$counter}    = $barcode;
115     $riduedate{$counter}        = $duedate;
116     $riborrowernumber{$counter} = $borrowernumber;
117
118     #######################
119     $input{counter}        = $counter;
120     $input{barcode}        = $barcode;
121     $input{duedate}        = $duedate;
122     $input{borrowernumber} = $borrowernumber;
123     push( @inputloop, \%input );
124 }
125
126 ############
127 # Deal with the requests....
128
129 if ($query->param('WT-itemNumber')){
130         updateWrongTransfer ($query->param('WT-itemNumber'),$query->param('WT-waitingAt'),$query->param('WT-From'));
131 }
132
133 if ( $query->param('resbarcode') ) {
134     my $item           = $query->param('itemnumber');
135     my $borrowernumber = $query->param('borrowernumber');
136     my $resbarcode     = $query->param('resbarcode');
137     my $diffBranchReturned = $query->param('diffBranch');
138     my $iteminfo   = GetBiblioFromItemNumber($item);
139     # fix up item type for display
140     $iteminfo->{'itemtype'} = C4::Context->preference('item-level_itypes') ? $iteminfo->{'itype'} : $iteminfo->{'itemtype'};
141     my $diffBranchSend = ($userenv_branch ne $diffBranchReturned) ? $diffBranchReturned : undef;
142 # diffBranchSend tells ModReserveAffect whether document is expected in this library or not,
143 # i.e., whether to apply waiting status
144     ModReserveAffect( $item, $borrowernumber, $diffBranchSend);
145 #   check if we have other reserves for this document, if we have a return send the message of transfer
146     my ( $messages, $nextreservinfo ) = GetOtherReserves($item);
147
148     my ($borr) = GetMemberDetails( $nextreservinfo, 0 );
149     my $name   = $borr->{'surname'} . ", " . $borr->{'title'} . " " . $borr->{'firstname'};
150     if ( $messages->{'transfert'} ) {
151         $template->param(
152             itemtitle      => $iteminfo->{'title'},
153             itembiblionumber => $iteminfo->{'biblionumber'},
154             iteminfo       => $iteminfo->{'author'},
155             tobranchname   => GetBranchName($messages->{'transfert'}),
156             name           => $name,
157             borrowernumber => $borrowernumber,
158             borcnum        => $borr->{'cardnumber'},
159             borfirstname   => $borr->{'firstname'},
160             borsurname     => $borr->{'surname'},
161             diffbranch     => 1,
162         );
163     }
164 }
165
166 my $borrower;
167 my $returned = 0;
168 my $messages;
169 my $issueinformation;
170 my $itemnumber;
171 my $barcode     = $query->param('barcode');
172 my $exemptfine  = $query->param('exemptfine');
173 my $dropboxmode = $query->param('dropboxmode');
174 my $dotransfer  = $query->param('dotransfer');
175 my $canceltransfer = $query->param('canceltransfer');
176 my $dest = $query->param('dest');
177 my $calendar    = C4::Calendar->new( branchcode => $userenv_branch );
178 #dropbox: get last open day (today - 1)
179 my $today       = C4::Dates->new();
180 my $today_iso   = $today->output('iso');
181 my $dropboxdate = $calendar->addDate($today, -1);
182 if ($dotransfer){
183 # An item has been returned to a branch other than the homebranch, and the librarian has chosen to initiate a transfer
184     my $transferitem = $query->param('transferitem');
185     my $tobranch     = $query->param('tobranch');
186     ModItemTransfer($transferitem, $userenv_branch, $tobranch); 
187 }
188
189 if ($canceltransfer){
190     $itemnumber=$query->param('itemnumber');
191     DeleteTransfer($itemnumber);
192     if($dest eq "ttr"){
193         print $query->redirect("/cgi-bin/koha/circ/transferstoreceive.pl");
194         exit;
195     } else {
196         $template->param( transfercancelled => 1);
197     }
198 }
199
200 # actually return book and prepare item table.....
201 if ($barcode) {
202     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
203     $barcode = barcodedecode($barcode) if C4::Context->preference('itemBarcodeInputFilter');
204     $itemnumber = GetItemnumberFromBarcode($barcode);
205
206     if ( C4::Context->preference("InProcessingToShelvingCart") ) {
207         my $item = GetItem( $itemnumber );
208         if ( $item->{'location'} eq 'PROC' ) {
209             $item->{'location'} = 'CART';
210             ModItem( $item, $item->{'biblionumber'}, $item->{'itemnumber'} );
211         }
212     }
213
214     if ( C4::Context->preference("ReturnToShelvingCart") ) {
215         my $item = GetItem( $itemnumber );
216         $item->{'location'} = 'CART';
217         ModItem( $item, $item->{'biblionumber'}, $item->{'itemnumber'} );
218     }
219
220 #
221 # save the return
222 #
223     ( $returned, $messages, $issueinformation, $borrower ) =
224       AddReturn( $barcode, $userenv_branch, $exemptfine, $dropboxmode);     # do the return
225     my $homeorholdingbranchreturn = C4::Context->preference('HomeOrHoldingBranchReturn') or 'homebranch';
226
227     # get biblio description
228     my $biblio = GetBiblioFromItemNumber($itemnumber);
229     # fix up item type for display
230     $biblio->{'itemtype'} = C4::Context->preference('item-level_itypes') ? $biblio->{'itype'} : $biblio->{'itemtype'};
231
232     $template->param(
233         title            => $biblio->{'title'},
234         homebranch       => $biblio->{'homebranch'},
235         homebranchname   => GetBranchName( $biblio->{$homeorholdingbranchreturn} ),
236         author           => $biblio->{'author'},
237         itembarcode      => $biblio->{'barcode'},
238         itemtype         => $biblio->{'itemtype'},
239         ccode            => $biblio->{'ccode'},
240         itembiblionumber => $biblio->{'biblionumber'},    
241     );
242
243     my %input = (
244         counter => 0,
245         first   => 1,
246         barcode => $barcode,
247     );
248
249     if ($returned) {
250         my $duedate = $issueinformation->{'date_due'};
251         $returneditems{0}      = $barcode;
252         $riborrowernumber{0}   = $borrower->{'borrowernumber'};
253         $riduedate{0}          = $duedate;
254         $input{borrowernumber} = $borrower->{'borrowernumber'};
255         $input{duedate}        = $duedate;
256         $input{return_overdue} = 1 if ($duedate and $duedate lt $today->output('iso'));
257         push( @inputloop, \%input );
258
259         if ( C4::Context->preference("FineNotifyAtCheckin") ) {
260             my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrower->{'borrowernumber'} );
261             if ($fines > 0) {
262                 $template->param( fines => sprintf("%.2f",$fines) );
263                 $template->param( fineborrowernumber => $borrower->{'borrowernumber'} );
264             }
265         }
266         
267         if (C4::Context->preference("WaitingNotifyAtCheckin") ) {
268             #Check for waiting holds
269             my @reserves = GetReservesFromBorrowernumber($borrower->{'borrowernumber'});
270             my $waiting_holds;
271             foreach my $num_res (@reserves) {
272                 if ( $num_res->{'found'} eq 'W' && $num_res->{'branchcode'} eq $userenv_branch) {
273                     $waiting_holds++;
274                 }
275             } 
276             if ($waiting_holds > 0) {
277                 $template->param(
278                     waiting_holds       => $waiting_holds,
279                     holdsborrowernumber => $borrower->{'borrowernumber'},
280                     holdsfirstname => $borrower->{'firstname'},
281                     holdssurname => $borrower->{'surname'},
282                 );
283             }
284         }
285     }
286     elsif ( !$messages->{'BadBarcode'} ) {
287         $input{duedate}   = 0;
288         $returneditems{0} = $barcode;
289         $riduedate{0}     = 0;
290         if ( $messages->{'wthdrawn'} ) {
291             $input{withdrawn}      = 1;
292             $input{borrowernumber} = 'Item Cancelled';  # FIXME: should be in display layer ?
293             $riborrowernumber{0}   = 'Item Cancelled';
294         }
295         else {
296             $input{borrowernumber} = ' ';  # This seems clearly bogus.
297             $riborrowernumber{0}   = ' ';
298         }
299         push( @inputloop, \%input );
300     }
301 }
302 $template->param( inputloop => \@inputloop );
303
304 my $found    = 0;
305 my $waiting  = 0;
306 my $reserved = 0;
307
308 # new op dev : we check if the document must be returned to his homebranch directly,
309 #  if the document is transfered, we have warning message .
310
311 if ( $messages->{'WasTransfered'} ) {
312     $template->param(
313         found          => 1,
314         transfer       => 1,
315     );
316 }
317
318 if ( $messages->{'NeedsTransfer'} ){
319     $template->param(
320         found          => 1,
321         needstransfer  => 1,
322         itemnumber     => $itemnumber,
323     );
324 }
325
326 if ( $messages->{'Wrongbranch'} ){
327     $template->param(
328         wrongbranch => 1,
329     );
330 }
331
332 # case of wrong transfert, if the document wasn't transfered to the right library (according to branchtransfer (tobranch) BDD)
333
334 if ( $messages->{'WrongTransfer'} and not $messages->{'WasTransfered'}) {
335     $messages->{'WrongTransfer'} = GetBranchName( $messages->{'WrongTransfer'} );
336     $template->param(
337         WrongTransfer  => 1,
338         TransferWaitingAt => $messages->{'WrongTransfer'},
339         WrongTransferItem => $messages->{'WrongTransferItem'},
340         itemnumber => $itemnumber,
341     );
342
343     my $reserve    = $messages->{'ResFound'};
344     my $branchname = $branches->{ $reserve->{'branchcode'} }->{'branchname'};
345     my ($borr) = GetMemberDetails( $reserve->{'borrowernumber'}, 0 );
346     my $name = $borr->{'surname'} . ", " . $borr->{'title'} . " " . $borr->{'firstname'};
347     $template->param(
348             wname           => $name,
349             wborfirstname   => $borr->{'firstname'},
350             wborsurname     => $borr->{'surname'},
351             wbortitle       => $borr->{'title'},
352             wborphone       => $borr->{'phone'},
353             wboremail       => $borr->{'email'},
354             wboraddress     => $borr->{'address'},
355             wboraddress2    => $borr->{'address2'},
356             wborcity        => $borr->{'city'},
357             wborzip         => $borr->{'zipcode'},
358             wborrowernumber => $reserve->{'borrowernumber'},
359             wborcnum        => $borr->{'cardnumber'},
360             wtransfertFrom  => $userenv_branch,
361     );
362 }
363
364 #
365 # reserve found and item arrived at the expected branch
366 #
367 if ( $messages->{'ResFound'}) {
368     my $reserve    = $messages->{'ResFound'};
369     my $branchname = $branches->{ $reserve->{'branchcode'} }->{'branchname'};
370     my ($borr) = GetMemberDetails( $reserve->{'borrowernumber'}, 0 );
371
372     if ( $reserve->{'ResFound'} eq "Waiting" or $reserve->{'ResFound'} eq "Reserved" ) {
373         if ( $reserve->{'ResFound'} eq "Waiting" ) {
374             $template->param(
375                 waiting      => ($userenv_branch eq $reserve->{'branchcode'} ? 1 : 0 ),
376             );
377         } elsif ( $reserve->{'ResFound'} eq "Reserved" ) {
378             $template->param(
379                 intransit    => ($userenv_branch eq $reserve->{'branchcode'} ? 0 : 1 ),
380                 transfertodo => ($userenv_branch eq $reserve->{'branchcode'} ? 0 : 1 ),
381                 resbarcode   => $barcode,
382                 reserved     => 1,
383             );
384         }
385
386         # same params for Waiting or Reserved
387         $template->param(
388             found          => 1,
389             currentbranch  => $branches->{$userenv_branch}->{'branchname'},
390             destbranchname => $branches->{ $reserve->{'branchcode'} }->{'branchname'},
391             name           => $borr->{'surname'} . ", " . $borr->{'title'} . " " . $borr->{'firstname'},
392             borfirstname   => $borr->{'firstname'},
393             borsurname     => $borr->{'surname'},
394             bortitle       => $borr->{'title'},
395             borphone       => $borr->{'phone'},
396             boremail       => $borr->{'email'},
397             boraddress     => $borr->{'address'},
398             boraddress2    => $borr->{'address2'},
399             borcity        => $borr->{'city'},
400             borzip         => $borr->{'zipcode'},
401             borcnum        => $borr->{'cardnumber'},
402             debarred       => $borr->{'debarred'},
403             gonenoaddress  => $borr->{'gonenoaddress'},
404             barcode        => $barcode,
405             destbranch     => $reserve->{'branchcode'},
406             borrowernumber => $reserve->{'borrowernumber'},
407             itemnumber     => $reserve->{'itemnumber'},
408             reservenotes   => $reserve->{'reservenotes'},
409         );
410     } # else { ; }  # error?
411 }
412
413 # Error Messages
414 my @errmsgloop;
415 foreach my $code ( keys %$messages ) {
416     my %err;
417     my $exit_required_p = 0;
418     if ( $code eq 'BadBarcode' ) {
419         $err{badbarcode} = 1;
420         $err{msg}        = $messages->{'BadBarcode'};
421     }
422     elsif ( $code eq 'NotIssued' ) {
423         $err{notissued} = 1;
424         $err{msg} = $branches->{ $messages->{'IsPermanent'} }->{'branchname'};
425     }
426     elsif ( $code eq 'LocalUse' ) {
427         $err{localuse} = 1;
428     }
429     elsif ( $code eq 'WasLost' ) {
430         $err{waslost} = 1;
431     }
432     elsif ( $code eq 'ResFound' ) {
433         ;    # FIXME... anything to do here?
434     }
435     elsif ( $code eq 'WasReturned' ) {
436         ;    # FIXME... anything to do here?
437     }
438     elsif ( $code eq 'WasTransfered' ) {
439         ;    # FIXME... anything to do here?
440     }
441     elsif ( $code eq 'wthdrawn' ) {
442         $err{withdrawn} = 1;
443         $exit_required_p = 1;
444     }
445     elsif ( ( $code eq 'IsPermanent' ) && ( not $messages->{'ResFound'} ) ) {
446         if ( $messages->{'IsPermanent'} ne $userenv_branch ) {
447             $err{ispermanent} = 1;
448             $err{msg}         =
449               $branches->{ $messages->{'IsPermanent'} }->{'branchname'};
450         }
451     }
452     elsif ( $code eq 'WrongTransfer' ) {
453         ;    # FIXME... anything to do here?
454     }
455     elsif ( $code eq 'WrongTransferItem' ) {
456         ;    # FIXME... anything to do here?
457     }
458     elsif ( $code eq 'NeedsTransfer' ) {
459     }
460     elsif ( $code eq 'Wrongbranch' ) {
461     }
462
463     else {
464         die "Unknown error code $code";    # note we need all the (empty) elsif's above, or we die.
465         # This forces the issue of staying in sync w/ Circulation.pm
466     }
467     if (%err) {
468         push( @errmsgloop, \%err );
469     }
470     last if $exit_required_p;
471 }
472 $template->param( errmsgloop => \@errmsgloop );
473
474 # patrontable ....
475 if ($borrower) {
476     my $flags = $borrower->{'flags'};
477     my @flagloop;
478     my $flagset;
479     foreach my $flag ( sort keys %$flags ) {
480         my %flaginfo;
481         unless ($flagset) { $flagset = 1; }
482         $flaginfo{redfont} = ( $flags->{$flag}->{'noissues'} );
483         $flaginfo{flag}    = $flag;
484         if ( $flag eq 'CHARGES' ) {
485             $flaginfo{msg}            = $flag;
486             $flaginfo{charges}        = 1;
487             $flaginfo{chargeamount}   = $flags->{$flag}->{amount};
488             $flaginfo{borrowernumber} = $borrower->{borrowernumber};
489         }
490         elsif ( $flag eq 'WAITING' ) {
491             $flaginfo{msg}     = $flag;
492             $flaginfo{waiting} = 1;
493             my @waitingitemloop;
494             my $items = $flags->{$flag}->{'itemlist'};
495             foreach my $item (@$items) {
496                 my $biblio = GetBiblioFromItemNumber( $item->{'itemnumber'});
497                 push @waitingitemloop, {
498                     biblionum => $biblio->{'biblionumber'},
499                     barcode   => $biblio->{'barcode'},
500                     title     => $biblio->{'title'},
501                     brname    => $branches->{ $biblio->{'holdingbranch'} }->{'branchname'},
502                 };
503             }
504             $flaginfo{itemloop} = \@waitingitemloop;
505         }
506         elsif ( $flag eq 'ODUES' ) {
507             my $items = $flags->{$flag}->{'itemlist'};
508             my @itemloop;
509             foreach my $item ( sort { $a->{'date_due'} cmp $b->{'date_due'} }
510                 @$items )
511             {
512                 my $biblio = GetBiblioFromItemNumber( $item->{'itemnumber'});
513                 push @itemloop, {
514                     duedate   => format_date($item->{'date_due'}),
515                     biblionum => $biblio->{'biblionumber'},
516                     barcode   => $biblio->{'barcode'},
517                     title     => $biblio->{'title'},
518                     brname    => $branches->{ $biblio->{'holdingbranch'} }->{'branchname'},
519                 };
520             }
521             $flaginfo{itemloop} = \@itemloop;
522             $flaginfo{overdue}  = 1;
523         }
524         else {
525             $flaginfo{other} = 1;
526             $flaginfo{msg}   = $flags->{$flag}->{'message'};
527         }
528         push( @flagloop, \%flaginfo );
529     }
530     $template->param(
531         flagset          => $flagset,
532         flagloop         => \@flagloop,
533         riborrowernumber => $borrower->{'borrowernumber'},
534         riborcnum        => $borrower->{'cardnumber'},
535         riborsurname     => $borrower->{'surname'},
536         ribortitle       => $borrower->{'title'},
537         riborfirstname   => $borrower->{'firstname'}
538     );
539 }
540
541 #set up so only the last 8 returned items display (make for faster loading pages)
542 my $returned_counter = ( C4::Context->preference('numReturnedItemsToShow') ) ? C4::Context->preference('numReturnedItemsToShow') : 8;
543 my $count = 0;
544 my @riloop;
545 my $shelflocations = GetKohaAuthorisedValues('items.location','');
546 foreach ( sort { $a <=> $b } keys %returneditems ) {
547     my %ri;
548     if ( $count++ < $returned_counter ) {
549         my $bar_code = $returneditems{$_};
550         my $duedate = $riduedate{$_};
551         if ($duedate) {
552             my @tempdate = split( /-/, $duedate );
553             $ri{year}  = $tempdate[0];
554             $ri{month} = $tempdate[1];
555             $ri{day}   = $tempdate[2];
556             $ri{duedate} = format_date($duedate);
557             my ($b)      = GetMemberDetails( $riborrowernumber{$_}, 0 );
558             $ri{return_overdue} = 1 if ($duedate lt $today->output('iso'));
559             $ri{borrowernumber} = $b->{'borrowernumber'};
560             $ri{borcnum}        = $b->{'cardnumber'};
561             $ri{borfirstname}   = $b->{'firstname'};
562             $ri{borsurname}     = $b->{'surname'};
563             $ri{bortitle}       = $b->{'title'};
564             $ri{bornote}        = $b->{'borrowernotes'};
565             $ri{borcategorycode}= $b->{'categorycode'};
566         }
567         else {
568             $ri{borrowernumber} = $riborrowernumber{$_};
569         }
570
571         #        my %ri;
572         my $biblio = GetBiblioFromItemNumber(GetItemnumberFromBarcode($bar_code));
573         # fix up item type for display
574         $biblio->{'itemtype'} = C4::Context->preference('item-level_itypes') ? $biblio->{'itype'} : $biblio->{'itemtype'};
575         $ri{itembiblionumber} = $biblio->{'biblionumber'};
576         $ri{itemtitle}        = $biblio->{'title'};
577         $ri{itemauthor}       = $biblio->{'author'};
578         $ri{itemcallnumber}   = $biblio->{'itemcallnumber'};
579         $ri{itemtype}         = $biblio->{'itemtype'};
580         $ri{itemnote}         = $biblio->{'itemnotes'};
581         $ri{ccode}            = $biblio->{'ccode'};
582         $ri{itemnumber}       = $biblio->{'itemnumber'};
583         $ri{barcode}          = $bar_code;
584
585         $ri{location}         = $biblio->{'location'};
586         my $shelfcode = $ri{'location'};
587         $ri{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
588
589     }
590     else {
591         last;
592     }
593     push @riloop, \%ri;
594 }
595
596 $template->param(
597     riloop         => \@riloop,
598     genbrname      => $branches->{$userenv_branch}->{'branchname'},
599     genprname      => $printers->{$printer}->{'printername'},
600     branchname     => $branches->{$userenv_branch}->{'branchname'},
601     printer        => $printer,
602     errmsgloop     => \@errmsgloop,
603     exemptfine     => $exemptfine,
604     dropboxmode    => $dropboxmode,
605     dropboxdate    => $dropboxdate->output(),
606     overduecharges => $overduecharges,
607     soundon        => C4::Context->preference("SoundOn"),
608 );
609
610 ### Comment out rotating collections for now to allow it a little more time to bake
611 ### for 3.4; in particular, must ensure that it doesn't fight with transfers required
612 ### to fill hold requests
613 ### -- Galen Charlton 2010-10-06
614 #my $itemnumber = GetItemnumberFromBarcode( $query->param('barcode') );
615 #if ( $itemnumber ) {
616 #   my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
617 #    if ( ! ( $holdingBranch eq $collectionBranch ) ) {
618 #        $template->param(
619 #          collectionItemNeedsTransferred => 1,
620 #          collectionBranch => GetBranchName($collectionBranch),
621 #        );
622 #    }
623 #}                                                                                                            
624
625 # actually print the page!
626 output_html_with_http_headers $query, $cookie, $template->output;