1 package C4
::Maintainance
; #assumes C4/Maintainance
3 #package to deal with marking up output
6 # Copyright 2000-2002 Katipo Communications
8 # This file is part of Koha.
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
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.
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #use warnings; FIXME - Bug 2505
29 use vars
qw($VERSION @ISA @EXPORT);
31 # set the version for version checking
36 C4::Maintenance - Koha catalog maintenance functions
44 The functions in this module perform various catalog-maintenance
45 functions, including deleting and undeleting books, fixing
46 miscategorized items, etc.
55 @EXPORT = qw(&listsubjects &shiftgroup &deletedbib &undeletebib
56 &updatetype &logaction);
60 ($count, $results) = &listsubjects($subject, $n, $offset);
62 Finds the subjects that begin with C<$subject> in the bibliosubject
63 table of the Koha database.
65 C<&listsubjects> returns a two-element array. C<$results> is a
66 reference-to-array, in which each element is a reference-to-hash
67 giving information about the given subject. C<$count> is the number of
68 elements in C<@{$results}>.
70 Probably the only interesting field in C<$results->[$i]> is
71 C<subject>, the subject in question.
73 C<&listsubject> returns up to C<$n> items, starting at C<$offset>. If
74 C<$n> is 0, it will return all matching subjects.
78 # FIXME - This API is bogus. The way it's currently used, it should
79 # just return a list of strings.
81 my ($sub,$num,$offset)=@_;
82 my $dbh = C4
::Context
->dbh;
83 my $query="Select * from bibliosubject where subject like ? group by subject";
85 # FIXME - Make $num and $offset optional.
86 # If $num was given, make sure $offset was, too.
89 push(@bind,$offset,$num);
91 my $sth=$dbh->prepare($query);
96 while (my $data=$sth->fetchrow_hashref){
101 return($i,\
@results);
106 &shiftgroup($biblionumber, $biblioitemnumber);
108 Changes the biblionumber associated with a given biblioitem.
109 C<$biblioitemnumber> is the number of the biblioitem to change.
110 C<$biblionumber> is the biblionumber to associate it with.
115 my ($biblionumber,$bi)=@_;
116 my $dbh = C4
::Context
->dbh;
117 my $sth=$dbh->prepare("update biblioitems set biblionumber=? where biblioitemnumber=?");
118 $sth->execute($biblionumber,$bi);
120 $sth=$dbh->prepare("update items set biblionumber=? where biblioitemnumber=?");
121 $sth->execute($biblionumber,$bi);
127 ($count, $results) = &deletedbib($title);
129 Looks up deleted books whose title begins with C<$title>.
131 C<&deletedbib> returns a two-element list. C<$results> is a
132 reference-to-array; each element is a reference-to-hash whose keys are
133 the fields of the deletedbiblio table in the Koha database. C<$count>
134 is the number of elements in C<$results>.
140 my $dbh = C4
::Context
->dbh;
141 my $sth=$dbh->prepare("Select * from deletedbiblio where title like ? order by title");
142 $sth->execute("$title%");
145 while (my $data=$sth->fetchrow_hashref){
150 return($i,\
@results);
155 &undeletebib($biblionumber);
157 Undeletes a book. C<&undeletebib> looks up the book with the given
158 biblionumber in the deletedbiblio table of the Koha database, and
159 moves its entry to the biblio table.
164 my ($biblionumber)=@_;
165 my $dbh = C4
::Context
->dbh;
166 my $sth=$dbh->prepare("select * from deletedbiblio where biblionumber=?");
167 $sth->execute($biblionumber);
168 if (my @data=$sth->fetchrow_array){
170 # FIXME - Doesn't this keep the same biblionumber? Isn't this
171 # forbidden by the definition of 'biblio'? Or doesn't it matter?
172 my $query="INSERT INTO biblio VALUES (";
174 $query .= ("?," x
$count);
177 $sth=$dbh->prepare($query);
178 $sth->execute(@data);
181 $sth=$dbh->prepare("DELETE FROM deletedbiblio WHERE biblionumber=?");
182 $sth->execute($biblionumber);
188 &updatetype($biblioitemnumber, $itemtype);
190 Changes the type of the item with the given biblioitemnumber to be
197 my $dbh = C4
::Context
->dbh;
198 my $sth=$dbh->prepare("Update biblioitems set itemtype=? where biblioitemnumber=?");
199 $sth->execute($type,$bi);
203 END { } # module clean-up code here (global destructor)
212 Koha Developement team <info@koha.org>