Bug 27498: (follow-up) Update to display logic
[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
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23 use Modern::Perl;
24 use CGI qw ( -utf8 );
25 use C4::Auth;
26 use C4::Output;
27 use C4::Context;
28 use C4::Acquisition;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::Search;
32
33 use Koha::Number::Price;
34 use Koha::Acquisition::Booksellers;
35 use Koha::Acquisition::Orders;
36
37 use List::MoreUtils qw/any/;
38
39 my $input=CGI->new;
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('unitprice');
51 my $replacementprice = $input->param('replacementprice');
52 my $datereceived     = $input->param('datereceived'),
53 my $invoiceid        = $input->param('invoiceid');
54 my $invoice          = GetInvoice($invoiceid);
55 my $invoiceno        = $invoice->{invoicenumber};
56 my $booksellerid     = $input->param('booksellerid');
57 my $cnt              = 0;
58 my $bookfund         = $input->param("bookfund");
59 my $suggestion_id    = $input->param("suggestionid");
60 my $order            = GetOrder($ordernumber);
61 my $new_ordernumber  = $ordernumber;
62
63 #bug18723 regression fix
64 if (C4::Context->preference("CurrencyFormat") eq 'FR') {
65     if (rindex($unitprice, '.') ge 0) {
66         substr($unitprice, rindex($unitprice, '.'), 1, ',');
67     }
68     if (rindex($replacementprice,'.') ge 0) {
69         substr($replacementprice, rindex($replacementprice, '.'), 1, ',');
70     }
71 }
72
73 $unitprice = Koha::Number::Price->new( $unitprice )->unformat();
74 $replacementprice = Koha::Number::Price->new( $replacementprice )->unformat();
75 my $order_obj = Koha::Acquisition::Orders->find( $ordernumber );
76 my $basket = $order_obj->basket;
77
78 #need old receivedate if we update the order, parcel.pl only shows the right parcel this way FIXME
79 if ($quantityrec > $origquantityrec ) {
80     my @received_items = ();
81     if ($basket->effective_create_items eq 'ordering') {
82         @received_items = $input->param('items_to_receive');
83         my @affects = split q{\|}, C4::Context->preference("AcqItemSetSubfieldsWhenReceived");
84         if ( @affects ) {
85             my $frameworkcode = GetFrameworkCode($biblionumber);
86             my ( $itemfield ) = GetMarcFromKohaField( 'items.itemnumber' );
87             for my $in ( @received_items ) {
88                 my $item = C4::Items::GetMarcItem( $biblionumber, $in );
89                 for my $affect ( @affects ) {
90                     my ( $sf, $v ) = split q{=}, $affect, 2;
91                     foreach ( $item->field($itemfield) ) {
92                         $_->update( $sf => $v );
93                     }
94                 }
95                 C4::Items::ModItemFromMarc( $item, $biblionumber, $in );
96             }
97         }
98     }
99
100     $order->{order_internalnote} = $input->param("order_internalnote");
101     $order->{tax_rate_on_receiving} = $input->param("tax_rate");
102     $order->{replacementprice} = $replacementprice;
103     $order->{unitprice} = $unitprice;
104
105     $order = C4::Acquisition::populate_order_with_prices(
106         {
107             order => $order,
108             booksellerid => $booksellerid,
109             receiving => 1
110         }
111     );
112
113     # save the quantity received.
114     if ( $quantityrec > 0 ) {
115         if ( $order_obj->subscriptionid ) {
116             # Quantity can only be modified if linked to a subscription
117             $order->{quantity} = $quantity; # quantityrec will be deduced from this value in ModReceiveOrder
118         }
119         ( $datereceived, $new_ordernumber ) = ModReceiveOrder(
120             {
121                 biblionumber     => $biblionumber,
122                 order            => $order,
123                 quantityreceived => $quantityrec,
124                 user             => $user,
125                 invoice          => $invoice,
126                 budget_id        => $bookfund,
127                 datereceived     => $datereceived,
128                 received_items   => \@received_items,
129             }
130         );
131     }
132
133     # now, add items if applicable
134     if ($basket->effective_create_items eq 'receiving') {
135
136         my @tags         = $input->multi_param('tag');
137         my @subfields    = $input->multi_param('subfield');
138         my @field_values = $input->multi_param('field_value');
139         my @serials      = $input->multi_param('serial');
140         my @itemid       = $input->multi_param('itemid');
141         my @ind_tag      = $input->multi_param('ind_tag');
142         my @indicator    = $input->multi_param('indicator');
143         #Rebuilding ALL the data for items into a hash
144         # parting them on $itemid.
145         my %itemhash;
146         my $countdistinct;
147         my $range=scalar(@itemid);
148         for (my $i=0; $i<$range; $i++){
149             unless ($itemhash{$itemid[$i]}){
150             $countdistinct++;
151             }
152             push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
153             push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
154             push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
155             push @{$itemhash{$itemid[$i]}->{'ind_tag'}},$ind_tag[$i];
156             push @{$itemhash{$itemid[$i]}->{'indicator'}},$indicator[$i];
157         }
158         my $new_order = Koha::Acquisition::Orders->find( $new_ordernumber );
159         foreach my $item (keys %itemhash){
160             my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
161                                           $itemhash{$item}->{'subfields'},
162                                           $itemhash{$item}->{'field_values'},
163                                           $itemhash{$item}->{'indicator'},
164                                           $itemhash{$item}->{'ind_tag'},
165                                           'ITEM' );
166             my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
167             my (undef,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$biblionumber);
168             $new_order->add_item( $itemnumber );
169         }
170     }
171 }
172
173 my $new_order_object = Koha::Acquisition::Orders->find( $new_ordernumber ); # FIXME we should not need to refetch it
174 my $items = $new_order_object->items;
175 while ( my $item = $items->next )  {
176     $item->booksellerid($booksellerid); # TODO This should be done using ->set, but bug 21761 is not resolved
177     $item->dateaccessioned($datereceived);
178     $item->datelastseen($datereceived);
179     $item->price($unitprice);
180     $item->replacementprice($replacementprice);
181     $item->replacementpricedate($datereceived);
182     $item->store;
183 }
184
185 if ($suggestion_id) {
186     my $reason = $input->param("reason") || '';
187     my $other_reason = $input->param("other_reason");
188     $reason = $other_reason if $reason eq 'other';
189     my $suggestion = Koha::Suggestions->find($suggestion_id);
190     $suggestion->update( { reason => $reason } ) if $suggestion;
191 }
192
193 print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoiceid=$invoiceid");