C4/External/BakerTaylor.pm - Back end for B&T content.
[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 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 use strict; 
21 use warnings;
22 use CGI;
23 use C4::Auth;
24 use C4::Context;
25 use C4::Biblio;
26 use C4::Items;
27 use C4::Output;
28 use C4::Circulation;
29 use C4::Accounts;
30 use C4::Reserves;
31
32 my $cgi= new CGI;
33
34 my ($loggedinuser, $cookie, $sessionID) = checkauth($cgi, 0, {circulate => 1}, 'intranet');
35
36 my $biblionumber=$cgi->param('biblionumber');
37 my $itemnumber=$cgi->param('itemnumber');
38 my $biblioitemnumber=$cgi->param('biblioitemnumber');
39 my $itemlost=$cgi->param('itemlost');
40 my $itemnotes=$cgi->param('itemnotes');
41 my $wthdrawn=$cgi->param('wthdrawn');
42 my $damaged=$cgi->param('damaged');
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_data_hashref = GetItem($itemnumber, undef);
49
50 # make sure item statuses are set to 0 if empty or NULL
51 for ($damaged,$itemlost,$wthdrawn) {
52     if (!$_ or $_ eq "") {
53         $_ = 0;
54     }
55 }
56
57 # modify MARC item if input differs from items table.
58 my $item_changes = {};
59 if (defined $itemnotes) { # i.e., itemnotes parameter passed from form
60     if ((not defined  $item_data_hashref->{'itemnotes'}) or $itemnotes ne $item_data_hashref->{'itemnotes'}) {
61         $item_changes->{'itemnotes'} = $itemnotes;
62     }
63 } elsif ($itemlost ne $item_data_hashref->{'itemlost'}) {
64     $item_changes->{'itemlost'} = $itemlost;
65 } elsif ($wthdrawn ne $item_data_hashref->{'wthdrawn'}) {
66     $item_changes->{'wthdrawn'} = $wthdrawn;
67 } elsif ($damaged ne $item_data_hashref->{'damaged'}) {
68     $item_changes->{'damaged'} = $damaged;
69 } else {
70     #nothings changed, so do nothing.
71     print $cgi->redirect("moredetail.pl?biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");
72         exit;
73 }
74
75 ModItem($item_changes, $biblionumber, $itemnumber);
76
77 # check issues iff itemlost.
78 # http://wiki.koha.org/doku.php?id=en:development:kohastatuses
79 # lost ==1 Lost, lost==2 longoverdue, lost==3 lost and paid for
80 # FIXME: itemlost should be set to 3 after payment is made, should be a warning to the interface that
81 # a charge has been added
82 # FIXME : if no replacement price, borrower just doesn't get charged?
83 if ($itemlost==1) {
84     my $sth=$dbh->prepare("SELECT * FROM issues WHERE itemnumber=?");
85     $sth->execute($itemnumber);
86     my $issues=$sth->fetchrow_hashref();
87
88     # if a borrower lost the item, add a replacement cost to the their record
89     if ( ($issues->{borrowernumber}) && ($itemlost==1) ){
90
91         # first make sure the borrower hasn't already been charged for this item
92         my $sth1=$dbh->prepare("SELECT * from accountlines
93         WHERE borrowernumber=? AND itemnumber=?");
94         $sth1->execute($issues->{'borrowernumber'},$itemnumber);
95         my $existing_charge_hashref=$sth1->fetchrow_hashref();
96
97         # OK, they haven't
98         unless ($existing_charge_hashref) {
99             # This item is on issue ... add replacement cost to the borrower's record and mark it returned
100             my $accountno = getnextacctno('',$issues->{'borrowernumber'},$dbh);
101             my $sth2=$dbh->prepare("INSERT INTO accountlines
102             (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding,itemnumber)
103             VALUES
104             (?,?,now(),?,?,'L',?,?)");
105             $sth2->execute($issues->{'borrowernumber'},$accountno,$item_data_hashref->{'replacementprice'},
106             "Lost Item $item_data_hashref->{'title'} $item_data_hashref->{'barcode'}",
107             $item_data_hashref->{'replacementprice'},$itemnumber);
108             $sth2->finish;
109         # FIXME: Log this ?
110         }
111     }
112     $sth->finish;
113 }
114
115 print $cgi->redirect("moredetail.pl?biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");