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>.
30 use C4
::Auth qw
/:DEFAULT get_session/;
33 use Koha
::BiblioFrameworks
;
34 use Koha
::AuthorisedValues
;
39 ###############################################
44 if (!C4
::Context
->userenv){
45 my $sessionID = $query->cookie("CGISESSID");
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");
55 #######################################################################################
57 my ($template, $user, $cookie, $flags ) = get_template_and_user
(
59 template_name
=> "circ/branchtransfers.tt",
63 flagsrequired
=> { circulate
=> "circulate_remaining_permissions" },
75 my $request = $query->param('request') || '';
76 my $borrowernumber = $query->param('borrowernumber') || 0;
77 my $tobranchcd = $query->param('tobranchcd') || '';
81 # Deal with the requests....
82 if ( $request eq "KillWaiting" ) {
83 my $item = $query->param('itemnumber');
84 my $holds = Koha
::Holds
->search({
86 borrowernumber
=> $borrowernumber
88 if ( $holds->count ) {
94 elsif ( $request eq "SetWaiting" ) {
95 my $item = $query->param('itemnumber');
96 ModReserveAffect
( $item, $borrowernumber );
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;
114 # collect the stack of books already transfered so they can printed...
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";
123 ( $transfered, $messages ) =
124 transferbook
( $tobranchcd, $barcode, $ignoreRs );
125 my $item = Koha
::Items
->find({ barcode
=> $barcode });
126 $found = $messages->{'ResFound'};
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 : '';
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*)/);
152 my $bc = $query->param("bc-$counter");
153 my $frbcd = $query->param("fb-$counter");
154 my $tobcd = $query->param("tb-$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 );
177 #####################
180 my $res = $messages->{'ResFound'};
181 $itemnumber = $res->{'itemnumber'};
183 if ( $res->{'ResFound'} eq "Waiting" ) {
186 elsif ( $res->{'ResFound'} eq "Reserved" ) {
188 $biblionumber = $res->{'biblionumber'};
193 foreach my $code ( keys %$messages ) {
194 if ( $code ne 'WasTransfered' ) {
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'} );
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 );
222 # warn "FINAL ============= ".Dumper(@trsfitemloop);
226 reserved
=> $reserved,
228 borrowernumber
=> $borrowernumber,
229 itemnumber
=> $itemnumber,
231 biblionumber
=> $biblionumber,
232 tobranchcd
=> $tobranchcd,
233 reqmessage
=> $reqmessage,
234 cancelled
=> $cancelled,
235 setwaiting
=> $setwaiting,
236 trsfitemloop
=> \
@trsfitemloop,
237 errmsgloop
=> \
@errmsgloop,
238 CircAutocompl
=> C4
::Context
->preference("CircAutocompl"),
241 # Checking if there is a Fast Cataloging Framework
242 $template->param( fast_cataloging
=> 1 ) if Koha
::BiblioFrameworks
->find( 'FA' );
244 output_html_with_http_headers
$query, $cookie, $template->output;