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