Bug 8172: Followup: Removes useless empty params
[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 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
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
13 # version.
14 #
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.
18 #
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.
22
23 use strict;
24 use warnings;
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 use List::MoreUtils qw/any/;
34
35 my $input=new CGI;
36 my $flagsrequired = {acquisition => 'order_receive'};
37
38 checkauth($input, 0, $flagsrequired, 'intranet');
39
40 my $user=$input->remote_user;
41 my $biblionumber = $input->param('biblionumber');
42 my $biblioitemnumber=$input->param('biblioitemnumber');
43 my $ordernumber=$input->param('ordernumber');
44 my $origquantityrec=$input->param('origquantityrec');
45 my $quantityrec=$input->param('quantityrec');
46 my $quantity=$input->param('quantity');
47 my $unitprice=$input->param('cost');
48 my $invoiceno=$input->param('invoice');
49 my $datereceived=$input->param('datereceived');
50 my $replacement=$input->param('rrp');
51 my $gst=$input->param('gst');
52 my $freight=$input->param('freight');
53 my $booksellerid = $input->param('booksellerid');
54 my $cnt=0;
55 my $error_url_str;
56 my $ecost = $input->param('ecost');
57 my $note = $input->param("note");
58
59 #need old recievedate if we update the order, parcel.pl only shows the right parcel this way FIXME
60 if ($quantityrec > $origquantityrec ) {
61     # now, add items if applicable
62     if (C4::Context->preference('AcqCreateItem') eq 'receiving') {
63
64         my @tags         = $input->param('tag');
65         my @subfields    = $input->param('subfield');
66         my @field_values = $input->param('field_value');
67         my @serials      = $input->param('serial');
68         my @itemid       = $input->param('itemid');
69         my @ind_tag      = $input->param('ind_tag');
70         my @indicator    = $input->param('indicator');
71         #Rebuilding ALL the data for items into a hash
72         # parting them on $itemid.
73         my %itemhash;
74         my $countdistinct;
75         my $range=scalar(@itemid);
76         for (my $i=0; $i<$range; $i++){
77             unless ($itemhash{$itemid[$i]}){
78             $countdistinct++;
79             }
80             push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
81             push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
82             push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
83             push @{$itemhash{$itemid[$i]}->{'ind_tag'}},$ind_tag[$i];
84             push @{$itemhash{$itemid[$i]}->{'indicator'}},$indicator[$i];
85         }
86         foreach my $item (keys %itemhash){
87             my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
88                                           $itemhash{$item}->{'subfields'},
89                                           $itemhash{$item}->{'field_values'},
90                                           $itemhash{$item}->{'ind_tag'},
91                                           $itemhash{$item}->{'indicator'},'ITEM');
92             my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
93             my (undef,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$biblionumber);
94             NewOrderItem($itemnumber, $ordernumber);
95         }
96     }
97
98     my @received_items = ();
99     if(C4::Context->preference('AcqCreateItem') eq 'ordering') {
100         @received_items = $input->param('items_to_receive');
101     }
102
103     # save the quantity received.
104     $datereceived = ModReceiveOrder($biblionumber,$ordernumber, $quantityrec ,$user,$unitprice,$invoiceno,$freight,$replacement,undef,$datereceived, \@received_items);
105 }
106
107 update_item( $_ ) foreach GetItemnumbersFromOrder( $ordernumber );
108
109 print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoice=$invoiceno&booksellerid=$booksellerid&freight=$freight&gst=$gst&datereceived=$datereceived$error_url_str");
110
111 ################################ End of script ################################
112
113 sub update_item {
114     my ( $itemnumber ) = @_;
115
116     ModItem( {
117         booksellerid         => $booksellerid,
118         dateaccessioned      => $datereceived,
119         price                => $unitprice,
120         replacementprice     => $replacement,
121         replacementpricedate => $datereceived,
122     }, $biblionumber, $itemnumber );
123 }