bugfixing of warnings in current transfers and waitingreservestranfers
[koha.git] / bookshelves / shelves.pl
1 #!/usr/bin/perl
2
3 #
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 =head1 NAME
22
23     shelves.pl
24
25 =head1 DESCRIPTION
26
27     this script is used to script to provide bookshelf management
28
29 =head1 CGI PARAMETERS
30
31 =over 4
32
33 =item C<modifyshelfcontents>
34
35     if this script has to modify the shelve content.
36
37 =item C<shelfnumber>
38
39     to know on which shelve this script has to work.
40
41 =item C<addbarcode>
42
43 =item C<op>
44
45     op can be equals to:
46         * modifsave to save change on the shelves
47         * modif to change the template to allow to modify the shelves.
48
49 =item C<viewshelf>
50
51     to load the template with 'viewshelves param' which allow to read the shelves information.
52
53 =item C<shelves>
54
55     if equals to 1. then call the function shelves which add
56     or delete a shelf.
57
58 =item C<addshelf>
59
60     if the param shelves = 1 then addshelf must be equals to the name of the shelf to add.
61
62 =back
63
64 =cut
65
66 use strict;
67 use CGI;
68 use C4::Output;
69 use C4::BookShelves;
70 use C4::Circulation::Circ2;
71 use C4::Auth;
72 use C4::Interface::CGI::Output;
73
74 my $query = new CGI;
75
76 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
77     {
78         template_name   => "bookshelves/shelves.tmpl",
79         query           => $query,
80         type            => "intranet",
81         authnotrequired => 0,
82         flagsrequired   => { catalogue => 1 },
83     }
84 );
85
86 if ( $query->param('modifyshelfcontents') ) {
87     my $shelfnumber = $query->param('viewshelf');
88     my $barcode     = $query->param('addbarcode');
89     my ($item) = getiteminformation( 0, $barcode );
90     if ( ShelfPossibleAction( $loggedinuser, $shelfnumber, 'manage' ) ) {
91         AddToShelf( $item->{'itemnumber'}, $shelfnumber );
92         foreach ( $query->param ) {
93             if (/REM-(\d*)/) {
94                 my $itemnumber = $1;
95                 DelFromShelf( $itemnumber, $shelfnumber );
96             }
97         }
98     }
99 }
100
101 # getting the Shelves list
102 my $shelflist = GetShelves( $loggedinuser, 2 );
103 $template->param( { loggedinuser => $loggedinuser } );
104 my $op = $query->param('op');
105
106 SWITCH: {
107     if ( $op && ( $op eq 'modifsave' ) ) {
108         ModShelf(
109             $query->param('shelfnumber'), $query->param('shelfname'),
110             $loggedinuser,                $query->param('category')
111         );
112         last SWITCH;
113     }
114     if ( $op && ( $op eq 'modif' ) ) {
115         my ( $shelfnumber, $shelfname, $owner, $category ) =
116           GetShelf( $query->param('shelf') );
117         $template->param(
118             edit                => 1,
119             shelfnumber         => $shelfnumber,
120             shelfname           => $shelfname,
121             "category$category" => 1
122         );
123
124         #         editshelf($query->param('shelf'));
125         last SWITCH;
126     }
127     if ( $query->param('viewshelf') ) {
128         #check that the user can view the shelf
129         my $shelfnumber = $query->param('viewshelf');
130         if ( ShelfPossibleAction( $loggedinuser, $shelfnumber, 'view' ) ) {
131             my $items = GetShelfContents($shelfnumber);
132             $template->param(
133                 shelfname   => $shelflist->{$shelfnumber}->{'shelfname'},
134                 shelfnumber => $shelfnumber,
135                 viewshelf   => $query->param('viewshelf'),
136                 manageshelf => &ShelfPossibleAction( $loggedinuser, $shelfnumber, 'manage' ),
137                 itemsloop   => $items,
138             );
139         }
140         last SWITCH;
141     }
142     if ( $query->param('shelves') ) {
143         if ( my $newshelf = $query->param('addshelf') ) {
144             my $shelfnumber = AddShelf(
145                 $newshelf,
146                 $query->param('owner'),
147                 $query->param('category')
148             );
149
150             if ( $shelfnumber == -1 ) {    #shelf already exists.
151                 $template->param(
152                     {
153                         shelfnumber => $shelfnumber,
154                         already     => 1
155                     }
156                 );
157             }
158     }
159     my @paramsloop;
160     foreach ( $query->param() ) {
161         my %line;
162         if (/DEL-(\d+)/) {
163             my $delshelf = $1;
164             my ( $status, $count ) = DelShelf($delshelf);
165             if ($status) {
166                 $line{'status'} = $status;
167                 $line{'count'}  = $count;
168             }
169         }
170
171         #if the shelf is not deleted, %line points on null
172         push( @paramsloop, \%line );
173     }
174     $template->param( paramsloop => \@paramsloop );
175     my ($shelflist) = GetShelves( $loggedinuser, 2 );
176     my $color = '';
177     my @shelvesloop;
178     foreach my $element ( sort keys %$shelflist ) {
179         my %line;
180         ( $color eq 1 ) ? ( $color = 0 ) : ( $color = 1 );
181         $line{'toggle'}         = $color;
182         $line{'shelf'}          = $element;
183         $line{'shelfname'}      = $shelflist->{$element}->{'shelfname'};
184         $line{'shelfbookcount'} = $shelflist->{$element}->{'count'};
185         push( @shelvesloop, \%line );
186     }
187     $template->param(
188         shelvesloop => \@shelvesloop,
189         shelves     => 1,
190     );
191         last SWITCH;
192     }
193 }
194
195 ($shelflist) =
196   GetShelves( $loggedinuser, 2 )
197   ;    # rebuild shelflist in case a shelf has been added
198
199 my $color = '';
200 my @shelvesloop;
201 my $numberCanManage = 0;
202
203 foreach my $element ( sort keys %$shelflist ) {
204     my %line;
205     ( $color eq 1 ) ? ( $color = 0 ) : ( $color = 1 );
206     $line{'toggle'}    = $color;
207     $line{'shelf'}     = $element;
208     $line{'shelfname'} = $shelflist->{$element}->{'shelfname'};
209     $line{ "category" . $shelflist->{$element}->{'category'} } = 1;
210     $line{'mine'} = 1 if $shelflist->{$element}->{'owner'} eq $loggedinuser;
211     $line{'shelfbookcount'} = $shelflist->{$element}->{'count'};
212     $line{'canmanage'} =  ShelfPossibleAction( $loggedinuser, $element, 'manage' );
213     $line{'firstname'} = $shelflist->{$element}->{'firstname'}
214         unless $shelflist->{$element}->{'owner'} eq $loggedinuser;
215     $line{'surname'} = $shelflist->{$element}->{'surname'}
216         unless $shelflist->{$element}->{'owner'} eq $loggedinuser;
217     
218     $numberCanManage++ if $line{'canmanage'};
219     
220         push( @shelvesloop, \%line );
221 }
222
223 $template->param(
224     shelvesloop     => \@shelvesloop,
225     numberCanManage => $numberCanManage,
226 );
227
228 output_html_with_http_headers $query, $cookie, $template->output;
229
230 sub shelves {
231     my $innertemplate = shift;
232     if ( my $newshelf = $query->param('addshelf') ) {
233         my $shelfnumber = AddShelf(
234             $newshelf,
235             $query->param('owner'),
236             $query->param('category')
237         );
238
239         if ( $shelfnumber == -1 ) {    #shelf already exists.
240             $template->param(
241                 {
242                     shelfnumber => $shelfnumber,
243                     already     => 1
244                 }
245             );
246         }
247     }
248     my @paramsloop;
249     foreach ( $query->param() ) {
250         my %line;
251         if (/DEL-(\d+)/) {
252             my $delshelf = $1;
253             my ( $status, $count ) = DelShelf($delshelf);
254             if ($status) {
255                 $line{'status'} = $status;
256                 $line{'count'}  = $count;
257             }
258         }
259
260         #if the shelf is not deleted, %line points on null
261         push( @paramsloop, \%line );
262     }
263     $innertemplate->param( paramsloop => \@paramsloop );
264     my ($shelflist) = GetShelves( $loggedinuser, 2 );
265     my $color = '';
266     my @shelvesloop;
267     foreach my $element ( sort keys %$shelflist ) {
268         my %line;
269         ( $color eq 1 ) ? ( $color = 0 ) : ( $color = 1 );
270         $line{'toggle'}         = $color;
271         $line{'shelf'}          = $element;
272         $line{'shelfname'}      = $shelflist->{$element}->{'shelfname'};
273         $line{'shelfbookcount'} = $shelflist->{$element}->{'count'};
274         push( @shelvesloop, \%line );
275     }
276     $innertemplate->param(
277         shelvesloop => \@shelvesloop,
278         shelves     => 1,
279     );
280 }
281
282 #
283 # $Log$
284 # Revision 1.11  2007/03/09 14:32:26  tipaul
285 # rel_3_0 moved to HEAD
286 #
287 # Revision 1.9.2.9  2007/02/05 15:54:30  toins
288 # don't display "remove selected shelves" if the user logged has no shelf.
289 #
290 # Revision 1.9.2.8  2006/12/15 17:36:57  toins
291 # - some change on the html param.
292 # - Writing directly the code of a sub called only once.
293 # - adding syspref: BiblioDefaultView.
294 #
295 # Revision 1.9.2.7  2006/12/14 17:22:55  toins
296 # bookshelves work perfectly with mod_perl and are cleaned.
297 #
298 # Revision 1.9.2.6  2006/12/13 10:06:05  toins
299 # fix a mod_perl specific bug.
300 #
301 # Revision 1.9.2.5  2006/12/11 17:10:06  toins
302 # fixing some bugs on bookshelves.
303 #
304 # Revision 1.9.2.4  2006/11/30 18:23:51  toins
305 # theses scripts don't need to use C4::Search.
306 #
307 # Revision 1.9.2.3  2006/10/30 09:50:45  tipaul
308 # better perl writting
309 #
310 # Revision 1.9.2.2  2006/10/17 07:59:35  toins
311 # ccode added.
312 #