BUG 2351 : Add duplicate barcode check prior to receiving multiple items. This patch...
[koha.git] / acqui / finishreceive.pl
1 #!/usr/bin/perl
2
3 #script to add a new item and to mark orders as received
4 #written 1/3/00 by chris@katipo.co.nz
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use CGI;
26 use C4::Auth;
27 use C4::Output;
28 use C4::Context;
29 use C4::Acquisition;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::Search;
33
34 my $input=new CGI;
35 my $flagsrequired = { acquisition => 1};
36 my ($loggedinuser, $cookie, $sessionID) = checkauth($input, 0, $flagsrequired, 'intranet');
37 my $user=$input->remote_user;
38 my $biblionumber = $input->param('biblionumber');
39 my $biblioitemnumber=$input->param('biblioitemnumber');
40 my $ordnum=$input->param('ordnum');
41 my $origquantityrec=$input->param('origquantityrec');
42 my $quantityrec=$input->param('quantityrec');
43 my $quantity=$input->param('quantity');
44 my $cost=$input->param('cost');
45 my $invoiceno=$input->param('invoice');
46 my $datereceived=$input->param('datereceived');
47 my $replacement=$input->param('rrp');
48 my $gst=$input->param('gst');
49 my $freight=$input->param('freight');
50 my $supplierid = $input->param('supplierid');
51 my @branch=$input->param('homebranch');
52 my @barcode=$input->param('barcode');
53 my @ccode=$input->param('ccode');
54 my @itemtype=$input->param('itemtype');
55 my @location=$input->param('location');
56 my @enumchron=$input->param('volinf');
57 my $cnt=0;
58 my $error_url_str;      
59
60 if ($quantityrec > $origquantityrec ) {
61         my @items_err ;
62         foreach my $bc (@barcode) {
63         my $itemRecord = TransformKohaToMarc({
64                     "items.replacementprice" => $replacement,
65                     "items.price"            => $cost,
66                     "items.booksellerid"     => $supplierid,
67                     "items.homebranch"       => $branch[$cnt],
68                     "items.holdingbranch"    => $branch[$cnt],
69                     "items.barcode"          => $barcode[$cnt],
70                     "items.ccode"          => $ccode[$cnt],
71                     "items.itype"          => $itemtype[$cnt],
72                     "items.location"          => $location[$cnt],
73                     "items.enumchron"          => $enumchron[$cnt], # FIXME : No integration here with serials module.
74                     "items.loan"             => 0, });
75                 $cnt++;
76                 my $item_hash = TransformMarcToKoha(undef,$itemRecord,'','items');
77                 # FIXME: possible race condition here.  duplicate barcode check should happen in AddItem, but for now we have to do it here.
78                 my %err = CheckItemPreSave($item_hash);
79                 if(%err) {
80                         push @items_err, \%err;
81                         for my $err_cnd (keys %err) {
82                                 $error_url_str .= "&error=" . $err_cnd . "&error_param=" . $err{$err_cnd};
83                         }
84                         $quantityrec--;
85                 } else {
86                         AddItemFromMarc($itemRecord,$biblionumber);
87                 }
88         }
89         
90     # save the quantity received.
91         if( $quantityrec > 0 ) {
92         $datereceived = ModReceiveOrder($biblionumber,$ordnum, $quantityrec ,$user,$cost,$invoiceno,$freight,$replacement,undef,$datereceived);
93         }
94 }
95     print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoice=$invoiceno&supplierid=$supplierid&freight=$freight&gst=$gst&datereceived=$datereceived$error_url_str");
96