Improving the formatting of the "add to shelf" pop-up. Changing the way the list...
[koha.git] / virtualshelves / addbybiblionumber.pl
1 #!/usr/bin/perl
2
3 #script to provide virtual shelf management
4 #
5 #
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA  02111-1307 USA
22
23
24 =head1 NAME
25
26     addbybiblionumber.pl
27
28 =head1 DESCRIPTION
29
30     This script allow to add a virtual in a virtual shelf from a biblionumber.
31
32 =head1 CGI PARAMETERS
33
34 =over 4
35
36 =item biblionumber
37
38     The biblionumber
39
40 =item shelfnumber
41
42     the shelfnumber where to add the virtual.
43
44 =item newvirtualshelf
45
46     if this parameter exists, then it must be equals to the name of the shelf
47     to add.
48
49 =item category
50
51     if this script has to add a shelf, it add one with this category.
52
53 =back
54
55 =cut
56
57 use strict;
58 use C4::Biblio;
59 use CGI;
60 use C4::Output;
61 use C4::VirtualShelves;
62 use C4::Circulation;
63 use C4::Auth;
64
65 #use it only to debug !
66 use CGI::Carp qw/fatalsToBrowser/;
67 use warnings;
68
69 my $query           = new CGI;
70 my $biblionumber    = $query->param('biblionumber');
71 my $shelfnumber     = $query->param('shelfnumber');
72 my $newvirtualshelf = $query->param('newvirtualshelf');
73 my $category        = $query->param('category');
74
75 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
76     {
77         template_name   => "virtualshelves/addbybiblionumber.tmpl",
78         query           => $query,
79         type            => "intranet",
80         authnotrequired => 0,
81         flagsrequired   => { catalogue => 1 },
82     }
83 );
84
85 $shelfnumber = AddShelf( $newvirtualshelf, $loggedinuser, $category )
86   if $newvirtualshelf;
87 if ( $shelfnumber || ( $shelfnumber == -1 ) ) {    # the shelf already exist.
88     &AddToShelfFromBiblio( $biblionumber, $shelfnumber );
89     print
90 "Content-Type: text/html\n\n<html><body onload=\"window.close()\"></body></html>";
91     exit;
92 }
93 else {    # this shelf doesn't already exist.
94     my ( $bibliocount, @biblios ) = GetBiblio($biblionumber);
95
96     my ($shelflist) = GetShelves( $loggedinuser, 3 );
97     my @shelvesloop;
98     my %shelvesloop;
99     foreach my $element ( sort keys %$shelflist ) {
100         push( @shelvesloop, $element );
101         $shelvesloop{$element} = $shelflist->{$element}->{'shelfname'};
102     }
103         if(@shelvesloop gt 0){
104     my $CGIvirtualshelves = CGI::scrolling_list(
105         -name     => 'shelfnumber',
106         -values   => \@shelvesloop,
107         -labels   => \%shelvesloop,
108         -size     => 1,
109         -tabindex => '',
110         -multiple => 0
111     );
112     $template->param(
113                 CGIvirtualshelves => $CGIvirtualshelves,
114     );
115         }
116
117     $template->param(
118         biblionumber      => $biblionumber,
119         title             => $biblios[0]->{'title'},
120         author            => $biblios[0]->{'author'},
121     );
122
123     output_html_with_http_headers $query, $cookie, $template->output;
124 }
125
126 # Revision 1.8  2007/04/24 13:54:29  hdl
127 # functions that were in C4::Interface::CGI::Output are now in C4::Output.
128 # So this implies quite a change for files.
129 # Sorry about conflicts which will be caused.
130 # directory Interface::CGI should now be dropped.
131 # I noticed that many scripts (reports ones, but also some circ/stats.pl or opac-topissues) still use Date::Manip.
132 #
133 # Revision 1.7  2007/04/04 16:46:22  tipaul
134 # HUGE COMMIT : code cleaning circulation.
135 #
136 # some stuff to do, i'll write a mail on koha-devel NOW !
137 #
138 # Revision 1.6  2007/03/09 14:32:26  tipaul
139 # rel_3_0 moved to HEAD
140 #
141 # Revision 1.4.2.6  2006/12/18 16:35:17  toins
142 # removing use HTML::Template from *.pl.
143 #
144 # Revision 1.4.2.5  2006/12/05 11:35:29  toins
145 # Biblio.pm cleaned.
146 # additionalauthors, bibliosubject, bibliosubtitle tables are now unused.
147 # Some functions renamed according to the coding guidelines.
148 #
149 # Revision 1.4.2.4  2006/11/30 18:23:51  toins
150 # theses scripts don't need to use C4::Search.
151 #
152 # Revision 1.4.2.3  2006/10/30 09:48:19  tipaul
153 # samll bugfix to create a virtualshelf correctly
154 #
155 # Revision 1.4.2.2  2006/08/30 16:13:54  toins
156 # correct an error in the "if condition".
157 #
158 # Revision 1.4.2.1  2006/08/30 15:59:14  toins
159 # Code cleaned according to coding guide lines.
160 #
161 # Revision 1.4  2006/07/04 14:36:51  toins
162 # Head & rel_2_2 merged
163 #
164 # Revision 1.3.2.4  2006/06/20 16:21:42  oleonard
165 # Adding "tabindex=''" to CGI:scrolling_lists to prevent incorrect tabbing. See Bug 1098
166 #
167 # Revision 1.3.2.3  2006/02/05 21:59:21  kados
168 # Adds script support for IntranetNav ... see mail to koha-devel for
169 # details
170 #
171 # Revision 1.3.2.2  2006/02/05 21:45:25  kados
172 # Adds support for intranetstylesheet system pref in Koha scripts
173 #
174
175 # Local Variables:
176 # tab-width: 4
177 # End: