Bug 10331 - Little errors in unimarc_field_4XX.pl (punctuation)
[koha.git] / acqui / finishreceive.pl
blobf9c85320e6633c8b7e37530e90f9794b342a49bb
1 #!/usr/bin/perl
3 #script to add a new item and to mark orders as received
4 #written 1/3/00 by chris@katipo.co.nz
6 # Copyright 2000-2002 Katipo Communications
8 # This file is part of Koha.
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.
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.
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.
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::Bookseller;
32 use C4::Items;
33 use C4::Search;
34 use List::MoreUtils qw/any/;
36 my $input=new CGI;
37 my $flagsrequired = {acquisition => 'order_receive'};
39 checkauth($input, 0, $flagsrequired, 'intranet');
41 my $user = $input->remote_user;
42 my $biblionumber = $input->param('biblionumber');
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 $invoiceid = $input->param('invoiceid');
49 my $invoice = GetInvoice($invoiceid);
50 my $invoiceno = $invoice->{invoicenumber};
51 my $datereceived = $invoice->{shipmentdate};
52 my $booksellerid = $input->param('booksellerid');
53 my $cnt = 0;
54 my $ecost = $input->param('ecost');
55 my $rrp = $input->param('rrp');
56 my $note = $input->param("note");
57 my $order = GetOrder($ordernumber);
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');
66 $order->{rrp} = $rrp;
67 $order->{ecost} = $ecost;
68 $order->{unitprice} = $unitprice;
69 my $bookseller = C4::Bookseller::GetBookSellerFromId($booksellerid);
70 if ( $bookseller->{listincgst} ) {
71 if ( not $bookseller->{invoiceincgst} ) {
72 $order->{rrp} = $order->{rrp} * ( 1 + $order->{gstrate} );
73 $order->{ecost} = $order->{ecost} * ( 1 + $order->{gstrate} );
74 $order->{unitprice} = $order->{unitprice} * ( 1 + $order->{gstrate} );
76 } else {
77 if ( $bookseller->{invoiceincgst} ) {
78 $order->{rrp} = $order->{rrp} / ( 1 + $order->{gstrate} );
79 $order->{ecost} = $order->{ecost} / ( 1 + $order->{gstrate} );
80 $order->{unitprice} = $order->{unitprice} / ( 1 + $order->{gstrate} );
84 my $new_ordernumber = $ordernumber;
85 # save the quantity received.
86 if ( $quantityrec > 0 ) {
87 ($datereceived, $new_ordernumber) = ModReceiveOrder(
88 $biblionumber,
89 $ordernumber,
90 $quantityrec,
91 $user,
92 $order->{unitprice},
93 $order->{ecost},
94 $invoiceid,
95 $order->{rrp},
96 undef,
97 $datereceived,
98 \@received_items,
102 # now, add items if applicable
103 if (C4::Context->preference('AcqCreateItem') eq 'receiving') {
105 my @tags = $input->param('tag');
106 my @subfields = $input->param('subfield');
107 my @field_values = $input->param('field_value');
108 my @serials = $input->param('serial');
109 my @itemid = $input->param('itemid');
110 my @ind_tag = $input->param('ind_tag');
111 my @indicator = $input->param('indicator');
112 #Rebuilding ALL the data for items into a hash
113 # parting them on $itemid.
114 my %itemhash;
115 my $countdistinct;
116 my $range=scalar(@itemid);
117 for (my $i=0; $i<$range; $i++){
118 unless ($itemhash{$itemid[$i]}){
119 $countdistinct++;
121 push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
122 push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
123 push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
124 push @{$itemhash{$itemid[$i]}->{'ind_tag'}},$ind_tag[$i];
125 push @{$itemhash{$itemid[$i]}->{'indicator'}},$indicator[$i];
127 foreach my $item (keys %itemhash){
128 my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
129 $itemhash{$item}->{'subfields'},
130 $itemhash{$item}->{'field_values'},
131 $itemhash{$item}->{'ind_tag'},
132 $itemhash{$item}->{'indicator'},'ITEM');
133 my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
134 my (undef,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$biblionumber);
135 NewOrderItem($itemnumber, $new_ordernumber);
141 update_item( $_ ) foreach GetItemnumbersFromOrder( $ordernumber );
143 print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoiceid=$invoiceid");
145 ################################ End of script ################################
147 sub update_item {
148 my ( $itemnumber ) = @_;
150 ModItem( {
151 booksellerid => $booksellerid,
152 dateaccessioned => $datereceived,
153 price => $unitprice,
154 replacementprice => $rrp,
155 replacementpricedate => $datereceived,
156 }, $biblionumber, $itemnumber );