Bug 12896: Move the bookseller-related code into Koha::Acquisition::Bookseller
[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::Bookseller;
32 use C4::Items;
33 use C4::Search;
34
35 use Koha::Acquisition::Bookseller;
36
37 use List::MoreUtils qw/any/;
38
39 my $input=new CGI;
40 my $flagsrequired = {acquisition => 'order_receive'};
41
42 checkauth($input, 0, $flagsrequired, 'intranet');
43
44 my $user             = $input->remote_user;
45 my $biblionumber     = $input->param('biblionumber');
46 my $ordernumber      = $input->param('ordernumber');
47 my $origquantityrec  = $input->param('origquantityrec');
48 my $quantityrec      = $input->param('quantityrec');
49 my $quantity         = $input->param('quantity');
50 my $unitprice        = $input->param('cost');
51 my $invoiceid        = $input->param('invoiceid');
52 my $invoice          = GetInvoice($invoiceid);
53 my $invoiceno        = $invoice->{invoicenumber};
54 my $datereceived     = $invoice->{shipmentdate};
55 my $booksellerid     = $input->param('booksellerid');
56 my $cnt              = 0;
57 my $ecost            = $input->param('ecost');
58 my $rrp              = $input->param('rrp');
59 my $order_internalnote = $input->param("order_internalnote");
60 my $bookfund         = $input->param("bookfund");
61 my $order            = GetOrder($ordernumber);
62 my $new_ordernumber  = $ordernumber;
63
64 #need old recievedate if we update the order, parcel.pl only shows the right parcel this way FIXME
65 if ($quantityrec > $origquantityrec ) {
66     my @received_items = ();
67     if(C4::Context->preference('AcqCreateItem') eq 'ordering') {
68         @received_items = $input->param('items_to_receive');
69         my @affects = split q{\|}, C4::Context->preference("AcqItemSetSubfieldsWhenReceived");
70         if ( @affects ) {
71             my $frameworkcode = GetFrameworkCode($biblionumber);
72             my ( $itemfield ) = GetMarcFromKohaField( 'items.itemnumber', $frameworkcode );
73             for my $in ( @received_items ) {
74                 my $item = C4::Items::GetMarcItem( $biblionumber, $in );
75                 for my $affect ( @affects ) {
76                     my ( $sf, $v ) = split q{=}, $affect, 2;
77                     foreach ( $item->field($itemfield) ) {
78                         $_->update( $sf => $v );
79                     }
80                 }
81                 C4::Items::ModItemFromMarc( $item, $biblionumber, $in );
82             }
83         }
84     }
85
86     $order->{rrp} = $rrp;
87     $order->{ecost} = $ecost;
88     $order->{unitprice} = $unitprice;
89     my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
90     if ( $bookseller->{listincgst} ) {
91         if ( not $bookseller->{invoiceincgst} ) {
92             $order->{rrp} = $order->{rrp} * ( 1 + $order->{gstrate} );
93             $order->{ecost} = $order->{ecost} * ( 1 + $order->{gstrate} );
94             $order->{unitprice} = $order->{unitprice} * ( 1 + $order->{gstrate} );
95         }
96     } else {
97         if ( $bookseller->{invoiceincgst} ) {
98             $order->{rrp} = $order->{rrp} / ( 1 + $order->{gstrate} );
99             $order->{ecost} = $order->{ecost} / ( 1 + $order->{gstrate} );
100             $order->{unitprice} = $order->{unitprice} / ( 1 + $order->{gstrate} );
101         }
102     }
103
104     # save the quantity received.
105     if ( $quantityrec > 0 ) {
106         ($datereceived, $new_ordernumber) = ModReceiveOrder({
107               biblionumber     => $biblionumber,
108               ordernumber      => $ordernumber,
109               quantityreceived => $quantityrec,
110               user             => $user,
111               cost             => $order->{unitprice},
112               ecost            => $order->{ecost},
113               invoiceid        => $invoiceid,
114               rrp              => $order->{rrp},
115               budget_id        => $bookfund,
116               datereceived     => $datereceived,
117               received_items   => \@received_items,
118               order_internalnote  => $order_internalnote,
119         } );
120     }
121
122     # now, add items if applicable
123     if (C4::Context->preference('AcqCreateItem') eq 'receiving') {
124
125         my @tags         = $input->param('tag');
126         my @subfields    = $input->param('subfield');
127         my @field_values = $input->param('field_value');
128         my @serials      = $input->param('serial');
129         my @itemid       = $input->param('itemid');
130         my @ind_tag      = $input->param('ind_tag');
131         my @indicator    = $input->param('indicator');
132         #Rebuilding ALL the data for items into a hash
133         # parting them on $itemid.
134         my %itemhash;
135         my $countdistinct;
136         my $range=scalar(@itemid);
137         for (my $i=0; $i<$range; $i++){
138             unless ($itemhash{$itemid[$i]}){
139             $countdistinct++;
140             }
141             push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
142             push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
143             push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
144             push @{$itemhash{$itemid[$i]}->{'ind_tag'}},$ind_tag[$i];
145             push @{$itemhash{$itemid[$i]}->{'indicator'}},$indicator[$i];
146         }
147         my $order = Koha::Acquisition::Order->fetch({ ordernumber => $new_ordernumber });
148         foreach my $item (keys %itemhash){
149             my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
150                                           $itemhash{$item}->{'subfields'},
151                                           $itemhash{$item}->{'field_values'},
152                                           $itemhash{$item}->{'ind_tag'},
153                                           $itemhash{$item}->{'indicator'},'ITEM');
154             my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
155             my (undef,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$biblionumber);
156             $order->add_item( $itemnumber );
157         }
158     }
159 }
160
161 ModItem(
162     {
163         booksellerid         => $booksellerid,
164         dateaccessioned      => $datereceived,
165         price                => $unitprice,
166         replacementprice     => $rrp,
167         replacementpricedate => $datereceived,
168     },
169     $biblionumber,
170     $_
171 ) foreach GetItemnumbersFromOrder($new_ordernumber);
172
173 print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoiceid=$invoiceid&sticky_filters=1");