Merge remote-tracking branch 'origin/new/bug_7417'
[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     my @received_items = ();
62     if(C4::Context->preference('AcqCreateItem') eq 'ordering') {
63         @received_items = $input->param('items_to_receive');
64     }
65
66     my $new_ordernumber = $ordernumber;
67     # save the quantity received.
68     if ( $quantityrec > 0 ) {
69         ($datereceived, $new_ordernumber) = ModReceiveOrder(
70             $biblionumber, $ordernumber, $quantityrec, $user, $unitprice,
71             $invoiceno, $freight, $replacement, undef, $datereceived,
72             \@received_items);
73     }
74
75     # now, add items if applicable
76     if (C4::Context->preference('AcqCreateItem') eq 'receiving') {
77
78         my @tags         = $input->param('tag');
79         my @subfields    = $input->param('subfield');
80         my @field_values = $input->param('field_value');
81         my @serials      = $input->param('serial');
82         my @itemid       = $input->param('itemid');
83         my @ind_tag      = $input->param('ind_tag');
84         my @indicator    = $input->param('indicator');
85         #Rebuilding ALL the data for items into a hash
86         # parting them on $itemid.
87         my %itemhash;
88         my $countdistinct;
89         my $range=scalar(@itemid);
90         for (my $i=0; $i<$range; $i++){
91             unless ($itemhash{$itemid[$i]}){
92             $countdistinct++;
93             }
94             push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
95             push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
96             push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
97             push @{$itemhash{$itemid[$i]}->{'ind_tag'}},$ind_tag[$i];
98             push @{$itemhash{$itemid[$i]}->{'indicator'}},$indicator[$i];
99         }
100         foreach my $item (keys %itemhash){
101             my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
102                                           $itemhash{$item}->{'subfields'},
103                                           $itemhash{$item}->{'field_values'},
104                                           $itemhash{$item}->{'ind_tag'},
105                                           $itemhash{$item}->{'indicator'},'ITEM');
106             my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
107             my (undef,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$biblionumber);
108             NewOrderItem($itemnumber, $new_ordernumber);
109         }
110     }
111 }
112
113 update_item( $_ ) foreach GetItemnumbersFromOrder( $ordernumber );
114
115 print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoice=$invoiceno&booksellerid=$booksellerid&freight=$freight&gst=$gst&datereceived=$datereceived$error_url_str");
116
117 ################################ End of script ################################
118
119 sub update_item {
120     my ( $itemnumber ) = @_;
121
122     ModItem( {
123         booksellerid         => $booksellerid,
124         dateaccessioned      => $datereceived,
125         price                => $unitprice,
126         replacementprice     => $replacement,
127         replacementpricedate => $datereceived,
128     }, $biblionumber, $itemnumber );
129 }