Bug 9302: Use patron-title.inc
[koha.git] / circ / branchtransfers.pl
blobb9d357c97f37aa1c7f32cdb0d8e20e0b306411f0
1 #!/usr/bin/perl
3 #script to execute branch transfers of books
5 # Copyright 2000-2002 Katipo Communications
6 # copyright 2010 BibLibre
8 # This file is part of Koha.
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.
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.
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>.
23 use Modern::Perl;
24 use CGI qw ( -utf8 );
25 use C4::Circulation;
26 use C4::Output;
27 use C4::Reserves;
28 use C4::Biblio;
29 use C4::Items;
30 use C4::Auth qw/:DEFAULT get_session/;
31 use C4::Koha;
32 use C4::Members;
33 use Koha::BiblioFrameworks;
34 use Koha::AuthorisedValues;
35 use Koha::Holds;
36 use Koha::Items;
37 use Koha::Patrons;
39 ###############################################
40 # Getting state
42 my $query = new CGI;
44 if (!C4::Context->userenv){
45 my $sessionID = $query->cookie("CGISESSID");
46 my $session;
47 $session = get_session($sessionID) if $sessionID;
48 if (!$session or $session->param('branch') eq 'NO_LIBRARY_SET'){
49 # no branch set we can't transfer
50 print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
51 exit;
55 #######################################################################################
56 # Make the page .....
57 my ($template, $user, $cookie, $flags ) = get_template_and_user(
59 template_name => "circ/branchtransfers.tt",
60 query => $query,
61 type => "intranet",
62 authnotrequired => 0,
63 flagsrequired => { circulate => "circulate_remaining_permissions" },
67 my $messages;
68 my $found;
69 my $reserved;
70 my $waiting;
71 my $reqmessage;
72 my $cancelled;
73 my $setwaiting;
75 my $request = $query->param('request') || '';
76 my $borrowernumber = $query->param('borrowernumber') || 0;
77 my $tobranchcd = $query->param('tobranchcd') || '';
79 my $ignoreRs = 0;
80 ############
81 # Deal with the requests....
82 if ( $request eq "KillWaiting" ) {
83 my $item = $query->param('itemnumber');
84 my $holds = Koha::Holds->search({
85 itemnumber => $item,
86 borrowernumber => $borrowernumber
87 });
88 if ( $holds->count ) {
89 $holds->next->cancel;
90 $cancelled = 1;
91 $reqmessage = 1;
92 } # FIXME else?
94 elsif ( $request eq "SetWaiting" ) {
95 my $item = $query->param('itemnumber');
96 ModReserveAffect( $item, $borrowernumber );
97 $ignoreRs = 1;
98 $setwaiting = 1;
99 $reqmessage = 1;
101 elsif ( $request eq 'KillReserved' ) {
102 my $biblionumber = $query->param('biblionumber');
103 my $holds = Koha::Holds->search({
104 biblionumber => $biblionumber,
105 borrowernumber => $borrowernumber
107 if ( $holds->count ) {
108 $holds->next->cancel;
109 $cancelled = 1;
110 $reqmessage = 1;
111 } # FIXME else?
114 # collect the stack of books already transfered so they can printed...
115 my @trsfitemloop;
116 my $transfered;
117 my $barcode = $query->param('barcode');
118 # remove leading/trailing whitespace
119 defined $barcode and $barcode =~ s/^\s*|\s*$//g; # FIXME: barcodeInputFilter
120 # warn "barcode : $barcode";
121 if ($barcode) {
123 ( $transfered, $messages ) =
124 transferbook( $tobranchcd, $barcode, $ignoreRs );
125 my $item = Koha::Items->find({ barcode => $barcode });
126 $found = $messages->{'ResFound'};
127 if ($transfered) {
128 my %item;
129 my $biblio = $item->biblio;
130 my $frbranchcd = C4::Context->userenv->{'branch'};
131 $item{'biblionumber'} = $item->biblionumber;
132 $item{'itemnumber'} = $item->itemnumber;
133 $item{'title'} = $biblio->title;
134 $item{'author'} = $biblio->author;
135 $item{'itemtype'} = $biblio->biblioitem->itemtype;
136 $item{'ccode'} = $item->ccode;
137 $item{'itemcallnumber'} = $item->itemcallnumber;
138 my $av = Koha::AuthorisedValues->search({ category => 'LOC', authorised_value => $item->location });
139 $item{'location'} = $av->count ? $av->next->lib : '';
140 $item{counter} = 0;
141 $item{barcode} = $barcode;
142 $item{frombrcd} = $frbranchcd;
143 $item{tobrcd} = $tobranchcd;
144 push( @trsfitemloop, \%item );
148 foreach ( $query->param ) {
149 (next) unless (/bc-(\d*)/);
150 my $counter = $1;
151 my %item;
152 my $bc = $query->param("bc-$counter");
153 my $frbcd = $query->param("fb-$counter");
154 my $tobcd = $query->param("tb-$counter");
155 $counter++;
156 $item{counter} = $counter;
157 $item{barcode} = $bc;
158 $item{frombrcd} = $frbcd;
159 $item{tobrcd} = $tobcd;
160 my $item = Koha::Items->find({ barcode => $bc });
161 my $biblio = $item->biblio;
162 $item{'biblionumber'} = $item->biblionumber;
163 $item{'itemnumber'} = $item->itemnumber;
164 $item{'title'} = $biblio->title;
165 $item{'author'} = $biblio->author;
166 $item{'itemtype'} = $biblio->biblioitem->itemtype;
167 $item{'ccode'} = $item->ccode;
168 $item{'itemcallnumber'} = $item->itemcallnumber;
169 my $av = Koha::AuthorisedValues->search({ category => 'LOC', authorised_value => $item->location });
170 $item{'location'} = $av->count ? $av->next->lib : '';
171 push( @trsfitemloop, \%item );
174 my $itemnumber;
175 my $biblionumber;
177 #####################
179 if ($found) {
180 my $res = $messages->{'ResFound'};
181 $itemnumber = $res->{'itemnumber'};
183 if ( $res->{'ResFound'} eq "Waiting" ) {
184 $waiting = 1;
186 elsif ( $res->{'ResFound'} eq "Reserved" ) {
187 $reserved = 1;
188 $biblionumber = $res->{'biblionumber'};
192 my @errmsgloop;
193 foreach my $code ( keys %$messages ) {
194 if ( $code ne 'WasTransfered' ) {
195 my %err;
196 if ( $code eq 'BadBarcode' ) {
197 $err{msg} = $messages->{'BadBarcode'};
198 $err{errbadcode} = 1;
200 elsif ( $code eq "NotAllowed" ) {
201 warn "NotAllowed: $messages->{'NotAllowed'} to branchcode " . $messages->{'NotAllowed'};
202 # Do we really want a error log message here? --atz
203 $err{errnotallowed} = 1;
204 my ( $tbr, $typecode ) = split( /::/, $messages->{'NotAllowed'} );
205 $err{tbr} = $tbr;
206 $err{code} = $typecode;
208 elsif ( $code eq 'WasReturned' ) {
209 $err{errwasreturned} = 1;
210 $err{borrowernumber} = $messages->{'WasReturned'};
211 my $patron = Koha::Patrons->find( $messages->{'WasReturned'} );
212 if ( $patron ) { # Just in case...
213 $err{patron} = $patron;
216 $err{errdesteqholding} = ( $code eq 'DestinationEqualsHolding' );
217 push( @errmsgloop, \%err );
221 # use Data::Dumper;
222 # warn "FINAL ============= ".Dumper(@trsfitemloop);
223 $template->param(
224 found => $found,
225 reserved => $reserved,
226 waiting => $waiting,
227 borrowernumber => $borrowernumber,
228 itemnumber => $itemnumber,
229 barcode => $barcode,
230 biblionumber => $biblionumber,
231 tobranchcd => $tobranchcd,
232 reqmessage => $reqmessage,
233 cancelled => $cancelled,
234 setwaiting => $setwaiting,
235 trsfitemloop => \@trsfitemloop,
236 errmsgloop => \@errmsgloop,
237 CircAutocompl => C4::Context->preference("CircAutocompl")
240 # Checking if there is a Fast Cataloging Framework
241 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
243 output_html_with_http_headers $query, $cookie, $template->output;