Populate items.cn_source in acq receive. However, items.cn_sort is not calculated...
[koha.git] / catalogue / updateitem.pl
blob26a99fef28caf247278d6ca526816983c0710d30
1 #!/usr/bin/perl
3 # $Id: updateitem.pl,v 1.9.2.1.2.4 2006/10/05 18:36:50 kados Exp $
4 # Copyright 2006 LibLime
6 # This file is part of Koha.
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.
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.
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;
32 my $cgi= new CGI;
34 my ($loggedinuser, $cookie, $sessionID) = checkauth($cgi, 0, {circulate => 1}, 'intranet');
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');
44 my $confirm=$cgi->param('confirm');
45 my $dbh = C4::Context->dbh;
47 # get the rest of this item's information
48 my $item_data_hashref = GetItem($itemnumber, undef);
50 # make sure item statuses are set to 0 if empty or NULL
51 for ($damaged,$itemlost,$wthdrawn) {
52 if (!$_ or $_ eq "") {
53 $_ = 0;
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;
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;
75 ModItem($item_changes, $biblionumber, $itemnumber);
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();
88 # if a borrower lost the item, add a replacement cost to the their record
89 if ( ($issues->{borrowernumber}) && ($itemlost==1) ){
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();
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'});
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 ?
112 $sth->finish;
115 print $cgi->redirect("moredetail.pl?biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");