Bug 33099: Add missing MARC21 Match authority mappings so "Search all headings" searc...
[koha.git] / catalogue / updateitem.pl
1 #!/usr/bin/perl
2
3 # $Id: updateitem.pl,v 1.9.2.1.2.4 2006/10/05 18:36:50 kados Exp $
4 # Copyright 2006 LibLime
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use C4::Auth qw( checkauth );
23 use C4::Context;
24 use C4::Output;
25 use C4::Circulation qw( LostItem );
26 use C4::Reserves;
27
28 my $cgi= CGI->new;
29
30 checkauth($cgi, 0, {circulate => 'circulate_remaining_permissions'}, 'intranet');
31
32 my $op = $cgi->param('op') || "";
33 my $biblionumber=$cgi->param('biblionumber');
34 my $itemnumber=$cgi->param('itemnumber');
35 my $biblioitemnumber=$cgi->param('biblioitemnumber');
36 my $itemlost=$cgi->param('itemlost');
37 my $itemnotes=$cgi->param('itemnotes');
38 my $itemnotes_nonpublic=$cgi->param('itemnotes_nonpublic');
39 my $withdrawn=$cgi->param('withdrawn');
40 my $damaged=$cgi->param('damaged');
41 my $exclude_from_local_holds_priority = $cgi->param('exclude_from_local_holds_priority');
42 my $bookable = $cgi->param('bookable');
43
44 my $confirm=$cgi->param('confirm');
45 my $dbh = C4::Context->dbh;
46
47 # get the rest of this item's information
48 my $item = Koha::Items->find($itemnumber);
49 my $item_data_hashref = $item->unblessed;
50
51 # make sure item statuses are set to 0 if empty or NULL
52 for ($damaged,$itemlost,$withdrawn) {
53     if (!$_ or $_ eq "") {
54         $_ = 0;
55     }
56 }
57
58 my $messages = q{};
59
60 # modify MARC item if input differs from items table.
61 if ( $op eq "cud-set_non_public_note" ) {
62     checkauth($cgi, 0, {editcatalogue => 'edit_items'}, 'intranet');
63     if ((not defined  $item_data_hashref->{'itemnotes_nonpublic'}) or $itemnotes_nonpublic ne $item_data_hashref->{'itemnotes_nonpublic'}) {
64         $item->itemnotes_nonpublic($itemnotes_nonpublic);
65     }
66 }
67 elsif ( $op eq "cud-set_public_note" ) { # i.e., itemnotes parameter passed from form
68     checkauth($cgi, 0, {editcatalogue => 'edit_items'}, 'intranet');
69     if ((not defined  $item_data_hashref->{'itemnotes'}) or $itemnotes ne $item_data_hashref->{'itemnotes'}) {
70         $item->itemnotes($itemnotes);
71     }
72 } elsif ( $op eq "cud-set_lost" && $itemlost ne $item_data_hashref->{'itemlost'}) {
73     $item->itemlost($itemlost);
74 } elsif ( $op eq "cud-set_withdrawn" && $withdrawn ne $item_data_hashref->{'withdrawn'}) {
75     $item->withdrawn($withdrawn);
76 } elsif ( $op eq "cud-set_exclude_priority" && $exclude_from_local_holds_priority ne $item_data_hashref->{'exclude_from_local_holds_priority'}) {
77     $item->exclude_from_local_holds_priority($exclude_from_local_holds_priority);
78     $messages = "updated_exclude_from_local_holds_priority=$exclude_from_local_holds_priority&";
79 } elsif ( $op eq "cud-set_bookable" && $bookable ne $item_data_hashref->{'bookable'} ) {
80     $item->bookable($bookable);
81 } elsif ( $op eq "cud-set_damaged" && $damaged ne $item_data_hashref->{'damaged'}) {
82     $item->damaged($damaged);
83 } else {
84     #nothings changed, so do nothing.
85     print $cgi->redirect("moredetail.pl?biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");
86         exit;
87 }
88
89 $item->store;
90
91 LostItem($itemnumber, 'moredetail') if $op eq "cud-set_lost";
92
93 print $cgi->redirect("moredetail.pl?" . $messages . "biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");