Bug 6331: (follow-up) update DBIC schema classes
[koha.git] / acqui / finishreceive.pl
blobaeb4394453456459b6ae8eb240ed66b18ac9cb74
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 $bookfund = $input->param("bookfund");
58 my $order = GetOrder($ordernumber);
59 my $new_ordernumber = $ordernumber;
61 #need old recievedate if we update the order, parcel.pl only shows the right parcel this way FIXME
62 if ($quantityrec > $origquantityrec ) {
63 my @received_items = ();
64 if(C4::Context->preference('AcqCreateItem') eq 'ordering') {
65 @received_items = $input->param('items_to_receive');
66 my @affects = split q{\|}, C4::Context->preference("AcqItemSetSubfieldsWhenReceived");
67 if ( @affects ) {
68 my $frameworkcode = GetFrameworkCode($biblionumber);
69 my ( $itemfield ) = GetMarcFromKohaField( 'items.itemnumber', $frameworkcode );
70 for my $in ( @received_items ) {
71 my $item = C4::Items::GetMarcItem( $biblionumber, $in );
72 for my $affect ( @affects ) {
73 my ( $sf, $v ) = split q{=}, $affect, 2;
74 foreach ( $item->field($itemfield) ) {
75 $_->update( $sf => $v );
78 C4::Items::ModItemFromMarc( $item, $biblionumber, $in );
83 $order->{rrp} = $rrp;
84 $order->{ecost} = $ecost;
85 $order->{unitprice} = $unitprice;
86 my $bookseller = C4::Bookseller::GetBookSellerFromId($booksellerid);
87 if ( $bookseller->{listincgst} ) {
88 if ( not $bookseller->{invoiceincgst} ) {
89 $order->{rrp} = $order->{rrp} * ( 1 + $order->{gstrate} );
90 $order->{ecost} = $order->{ecost} * ( 1 + $order->{gstrate} );
91 $order->{unitprice} = $order->{unitprice} * ( 1 + $order->{gstrate} );
93 } else {
94 if ( $bookseller->{invoiceincgst} ) {
95 $order->{rrp} = $order->{rrp} / ( 1 + $order->{gstrate} );
96 $order->{ecost} = $order->{ecost} / ( 1 + $order->{gstrate} );
97 $order->{unitprice} = $order->{unitprice} / ( 1 + $order->{gstrate} );
101 # save the quantity received.
102 if ( $quantityrec > 0 ) {
103 ($datereceived, $new_ordernumber) = ModReceiveOrder(
104 $biblionumber,
105 $ordernumber,
106 $quantityrec,
107 $user,
108 $order->{unitprice},
109 $order->{ecost},
110 $invoiceid,
111 $order->{rrp},
112 $bookfund,
113 $datereceived,
114 \@received_items,
118 # now, add items if applicable
119 if (C4::Context->preference('AcqCreateItem') eq 'receiving') {
121 my @tags = $input->param('tag');
122 my @subfields = $input->param('subfield');
123 my @field_values = $input->param('field_value');
124 my @serials = $input->param('serial');
125 my @itemid = $input->param('itemid');
126 my @ind_tag = $input->param('ind_tag');
127 my @indicator = $input->param('indicator');
128 #Rebuilding ALL the data for items into a hash
129 # parting them on $itemid.
130 my %itemhash;
131 my $countdistinct;
132 my $range=scalar(@itemid);
133 for (my $i=0; $i<$range; $i++){
134 unless ($itemhash{$itemid[$i]}){
135 $countdistinct++;
137 push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
138 push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
139 push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
140 push @{$itemhash{$itemid[$i]}->{'ind_tag'}},$ind_tag[$i];
141 push @{$itemhash{$itemid[$i]}->{'indicator'}},$indicator[$i];
143 foreach my $item (keys %itemhash){
144 my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
145 $itemhash{$item}->{'subfields'},
146 $itemhash{$item}->{'field_values'},
147 $itemhash{$item}->{'ind_tag'},
148 $itemhash{$item}->{'indicator'},'ITEM');
149 my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
150 my (undef,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$biblionumber);
151 NewOrderItem($itemnumber, $new_ordernumber);
156 ModItem(
158 booksellerid => $booksellerid,
159 dateaccessioned => $datereceived,
160 price => $unitprice,
161 replacementprice => $rrp,
162 replacementpricedate => $datereceived,
164 $biblionumber,
166 ) foreach GetItemnumbersFromOrder($new_ordernumber);
168 print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoiceid=$invoiceid");