Bug 16274: Add the new pref PatronSelfRegistrationLibraryList
[koha.git] / circ / branchtransfers.pl
1 #!/usr/bin/perl
2
3 #script to execute branch transfers of books
4
5 # Copyright 2000-2002 Katipo Communications
6 # copyright 2010 BibLibre
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23 use strict;
24 use warnings;
25 use CGI qw ( -utf8 );
26 use C4::Circulation;
27 use C4::Output;
28 use C4::Reserves;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::Auth qw/:DEFAULT get_session/;
32 use C4::Koha;
33 use C4::Members;
34
35 ###############################################
36 #  Getting state
37
38 my $query = new CGI;
39
40 if (!C4::Context->userenv){
41         my $sessionID = $query->cookie("CGISESSID");
42     my $session;
43         $session = get_session($sessionID) if $sessionID;
44         if (!$session or $session->param('branch') eq 'NO_LIBRARY_SET'){
45                 # no branch set we can't transfer
46                 print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
47                 exit;
48         }
49 }
50
51 #######################################################################################
52 # Make the page .....
53 my ($template, $user, $cookie) = get_template_and_user(
54     {
55         template_name   => "circ/branchtransfers.tt",
56         query           => $query,
57         type            => "intranet",
58         authnotrequired => 0,
59         flagsrequired   => { circulate => "circulate_remaining_permissions" },
60     }
61 );
62
63 my $messages;
64 my $found;
65 my $reserved;
66 my $waiting;
67 my $reqmessage;
68 my $cancelled;
69 my $setwaiting;
70
71 my $request        = $query->param('request')        || '';
72 my $borrowernumber = $query->param('borrowernumber') ||  0;
73 my $tobranchcd     = $query->param('tobranchcd')     || '';
74
75 my $ignoreRs = 0;
76 ############
77 # Deal with the requests....
78 if ( $request eq "KillWaiting" ) {
79     my $item = $query->param('itemnumber');
80     CancelReserve({
81         itemnumber     => $item,
82         borrowernumber => $borrowernumber
83     });
84     $cancelled   = 1;
85     $reqmessage  = 1;
86 }
87 elsif ( $request eq "SetWaiting" ) {
88     my $item = $query->param('itemnumber');
89     ModReserveAffect( $item, $borrowernumber );
90     $ignoreRs    = 1;
91     $setwaiting  = 1;
92     $reqmessage  = 1;
93 }
94 elsif ( $request eq 'KillReserved' ) {
95     my $biblio = $query->param('biblionumber');
96     CancelReserve({
97         biblionumber   => $biblio,
98         borrowernumber => $borrowernumber
99     });
100     $cancelled   = 1;
101     $reqmessage  = 1;
102 }
103
104 # collect the stack of books already transfered so they can printed...
105 my @trsfitemloop;
106 my $transfered;
107 my $barcode = $query->param('barcode');
108 # remove leading/trailing whitespace
109 defined $barcode and $barcode =~ s/^\s*|\s*$//g;  # FIXME: barcodeInputFilter
110 # warn "barcode : $barcode";
111 if ($barcode) {
112
113     my $iteminformation;
114     ( $transfered, $messages, $iteminformation ) =
115       transferbook( $tobranchcd, $barcode, $ignoreRs );
116 #       use Data::Dumper;
117 #       warn "Transfered : $transfered / ".Dumper($messages);
118     $found = $messages->{'ResFound'};
119     if ($transfered) {
120         my %item;
121         my $frbranchcd =  C4::Context->userenv->{'branch'};
122 #         if ( not($found) ) {
123         $item{'biblionumber'}          = $iteminformation->{'biblionumber'};
124         $item{'itemnumber'}            = $iteminformation->{'itemnumber'};
125         $item{'title'}                 = $iteminformation->{'title'};
126         $item{'author'}                = $iteminformation->{'author'};
127         $item{'itemtype'}              = $iteminformation->{'itemtype'};
128         $item{'ccode'}                 = $iteminformation->{'ccode'};
129         $item{'itemcallnumber'}        = $iteminformation->{'itemcallnumber'};
130         $item{'location'}              = GetKohaAuthorisedValueLib("LOC",$iteminformation->{'location'});
131 #         }
132         $item{counter}  = 0;
133         $item{barcode}  = $barcode;
134         $item{frombrcd} = $frbranchcd;
135         $item{tobrcd}   = $tobranchcd;
136         push( @trsfitemloop, \%item );
137 #         warn Dumper(@trsfitemloop);
138     }
139 }
140
141 foreach ( $query->param ) {
142     (next) unless (/bc-(\d*)/);
143     my $counter = $1;
144     my %item;
145     my $bc    = $query->param("bc-$counter");
146     my $frbcd = $query->param("fb-$counter");
147     my $tobcd = $query->param("tb-$counter");
148     $counter++;
149     $item{counter}  = $counter;
150     $item{barcode}  = $bc;
151     $item{frombrcd} = $frbcd;
152     $item{tobrcd}   = $tobcd;
153     my ($iteminformation) = GetBiblioFromItemNumber( GetItemnumberFromBarcode($bc) );
154     $item{'biblionumber'}          = $iteminformation->{'biblionumber'};
155     $item{'itemnumber'}            = $iteminformation->{'itemnumber'};
156     $item{'title'}                 = $iteminformation->{'title'};
157     $item{'author'}                = $iteminformation->{'author'};
158     $item{'itemtype'}              = $iteminformation->{'itemtype'};
159     $item{'ccode'}                 = $iteminformation->{'ccode'};
160     $item{'itemcallnumber'}        = $iteminformation->{'itemcallnumber'};
161     $item{'location'}              = GetKohaAuthorisedValueLib("LOC",$iteminformation->{'location'});
162     push( @trsfitemloop, \%item );
163 }
164
165 my $itemnumber;
166 my $biblionumber;
167
168 #####################
169
170 if ($found) {
171     my $res = $messages->{'ResFound'};
172     $itemnumber = $res->{'itemnumber'};
173
174     if ( $res->{'ResFound'} eq "Waiting" ) {
175         $waiting = 1;
176     }
177     elsif ( $res->{'ResFound'} eq "Reserved" ) {
178         $reserved  = 1;
179         $biblionumber = $res->{'biblionumber'};
180     }
181 }
182
183 my @errmsgloop;
184 foreach my $code ( keys %$messages ) {
185     if ( $code ne 'WasTransfered' ) {
186         my %err;
187         if ( $code eq 'BadBarcode' ) {
188             $err{msg}        = $messages->{'BadBarcode'};
189             $err{errbadcode} = 1;
190         }
191         elsif ( $code eq "NotAllowed" ) {
192             warn "NotAllowed: $messages->{'NotAllowed'} to branchcode " . $messages->{'NotAllowed'};
193             # Do we really want a error log message here? --atz
194             $err{errnotallowed} =  1;
195             my ( $tbr, $typecode ) = split( /::/,  $messages->{'NotAllowed'} );
196             $err{tbr}      = $tbr;
197             $err{code}     = $typecode;
198         }
199         elsif ( $code eq 'IsPermanent' ) {
200             $err{errispermanent} = 1;
201             $err{msg} = $messages->{'IsPermanent'};
202         }
203         elsif ( $code eq 'WasReturned' ) {
204             $err{errwasreturned} = 1;
205             $err{borrowernumber} = $messages->{'WasReturned'};
206             my $borrower = GetMember('borrowernumber'=>$messages->{'WasReturned'});
207             $err{title}      = $borrower->{'title'};
208             $err{firstname}  = $borrower->{'firstname'};
209             $err{surname}    = $borrower->{'surname'};
210             $err{cardnumber} = $borrower->{'cardnumber'};
211         }
212         $err{errdesteqholding} = ( $code eq 'DestinationEqualsHolding' );
213         push( @errmsgloop, \%err );
214     }
215 }
216
217 # use Data::Dumper;
218 # warn "FINAL ============= ".Dumper(@trsfitemloop);
219 $template->param(
220     found                   => $found,
221     reserved                => $reserved,
222     waiting                 => $waiting,
223     borrowernumber          => $borrowernumber,
224     itemnumber              => $itemnumber,
225     barcode                 => $barcode,
226     biblionumber            => $biblionumber,
227     tobranchcd              => $tobranchcd,
228     reqmessage              => $reqmessage,
229     cancelled               => $cancelled,
230     setwaiting              => $setwaiting,
231     trsfitemloop            => \@trsfitemloop,
232     errmsgloop              => \@errmsgloop,
233     CircAutocompl           => C4::Context->preference("CircAutocompl")
234 );
235 output_html_with_http_headers $query, $cookie, $template->output;
236