MT 2206 addorder crashing
[koha.git] / acqui / addorder.pl
1 #!/usr/bin/perl
2
3 #script to add an order into the system
4 #written 29/2/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 with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA  02111-1307 USA
22
23
24 =head1 NAME
25
26 addorder.pl
27
28 =head1 DESCRIPTION
29
30 this script allows to add an order.
31 It is called by :
32
33 =item neworderbiblio.pl to add an order from nothing.
34
35 =item neworderempty.pl to add an order from an existing biblio.
36
37 =item newordersuggestion.pl to add an order from an existing suggestion.
38
39 =head1 CGI PARAMETERS
40
41 All of the cgi parameters below are related to the new order.
42
43 =over 4
44
45 =item C<ordnum>
46 the number of this new order.
47
48 =item C<basketno>
49 the number of this new basket
50
51 =item C<booksellerid>
52 the bookseller the librarian has to pay.
53
54 =item C<existing>
55
56 =item C<title>
57 the title of the record ordered.
58
59 =item C<author>
60 the author of the record ordered.
61
62 =item C<copyrightdate>
63 the copyrightdate of the record ordered.
64
65 =item C<ISBN>
66 the ISBN of the record ordered.
67
68 =item C<format>
69
70 =item C<quantity>
71 the quantity to order.
72
73 =item C<list_price>
74 the price of this order.
75
76 =item C<uncertainprice>
77 uncertain price, can't close basket until prices of all orders are known.
78
79 =item C<branch>
80 the branch where this order will be received.
81
82 =item C<series>
83
84 =item C<notes>
85 Notes on this basket.
86
87 =item C<budget_id>
88 budget_id used to pay this order.
89
90 =item C<sort1> & C<sort2>
91
92 =item C<rrp>
93
94 =item C<ecost>
95
96 =item C<GST>
97
98 =item C<budget>
99
100 =item C<cost>
101
102 =item C<sub>
103
104 =item C<invoice>
105 the number of the invoice for this order.
106
107 =item C<publishercode>
108
109 =item C<suggestionid>
110 if it is an order from an existing suggestion : the id of this suggestion.
111
112 =item C<donation>
113
114 =back
115
116 =cut
117
118 use strict;
119 use warnings;
120 use CGI;
121 use C4::Auth;                   # get_template_and_user
122 use C4::Acquisition;    # NewOrder DelOrder ModOrder
123 use C4::Suggestions;    # ModStatus
124 use C4::Biblio;                 # AddBiblio TransformKohaToMarc
125 use C4::Items;
126 use C4::Output;
127
128 ### "-------------------- addorder.pl ----------"
129
130 # FIXME: This needs to do actual error checking and possibly return user to the same form,
131 # not just blindly call C4 functions and print a redirect.  
132
133 my $input = new CGI;
134 ### $input 
135
136 # get_template_and_user used only to check auth & get user id
137 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
138     {
139         template_name   => "acqui/booksellers.tmpl",
140         query           => $input,
141         type            => "intranet",
142         authnotrequired => 0,
143         flagsrequired   => { acquisition => 'order_manage' },
144         debug           => 1,
145     }
146 );
147
148 # get CGI parameters
149 my $orderinfo                                   = $input->Vars;
150 $orderinfo->{'list_price'}    ||=  0;
151 #my $ordnum        = $input->param('ordnum');
152 #my $basketno      = $input->param('basketno');
153 #my $booksellerid  = $input->param('booksellerid');
154 #my $existing      = $input->param('existing');    # existing biblio, (not basket or order)
155 #my $title         = $input->param('title');
156 #my $author        = $input->param('author');
157 #my $publicationyear= $input->param('publicationyear');
158 #my $isbn          = $input->param('ISBN');
159 #my $itemtype      = $input->param('format');
160 #my $quantity      = $input->param('quantity');         # FIXME: else ERROR!
161 #my $branch        = $input->param('branch');
162 #my $series        = $input->param('series');
163 #my $notes         = $input->param('notes');
164 #my $budget_id     = $input->param('budget_id');
165 #my $sort1         = $input->param('sort1');
166 #my $sort2         = $input->param('sort2');
167 #my $rrp           = $input->param('rrp');
168 #my $ecost         = $input->param('ecost');
169 #my $gst           = $input->param('GST');
170 #my $budget        = $input->param('budget');
171 #my $cost          = $input->param('cost');
172 #my $sub           = $input->param('sub');
173 #my $purchaseorder = $input->param('purchaseordernumber');
174 #my $invoice       = $input->param('invoice');
175 #my $publishercode = $input->param('publishercode');
176 #my $suggestionid  = $input->param('suggestionid');
177 #my $biblionumber  = $input->param('biblionumber');
178 #my $uncertainprice = $input->param('uncertainprice');
179 #my $import_batch_id= $input->param('import_batch_id');
180 #
181 #my $createbibitem = $input->param('createbibitem');
182 #
183 my $user          = $input->remote_user;
184 # create, modify or delete biblio
185 # create if $quantity>=0 and $existing='no'
186 # modify if $quantity>=0 and $existing='yes'
187 # delete if $quantity has been set to 0 by the librarian
188 my $bibitemnum;
189 if ( $orderinfo->{quantity} ne '0' ) {
190     #TODO:check to see if biblio exists
191     unless ( $$orderinfo{biblionumber} ) {
192
193         #if it doesnt create it
194         my $record = TransformKohaToMarc(
195             {
196                 "biblio.title"                => "$$orderinfo{title}",
197                 "biblio.author"               => "$$orderinfo{author}",
198                 "biblio.series"               => $$orderinfo{series}          ? $$orderinfo{series}        : "",
199                 "biblioitems.isbn"            => $$orderinfo{isbn}            ? $$orderinfo{isbn}          : "",
200                 "biblioitems.publishercode"   => $$orderinfo{publishercode}   ? $$orderinfo{publishercode} : "",
201                 "biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "",
202             });
203         # create the record in catalogue, with framework ''
204         my ($biblionumber,$bibitemnum) = AddBiblio($record,'');
205         # change suggestion status if applicable
206         if ($$orderinfo{suggestionid}) {
207             ModSuggestion( {suggestionid=>$$orderinfo{suggestionid}, status=>'ORDERED', biblionumber=>$biblionumber} );
208         }
209                 $orderinfo->{biblioitemnumber}=$bibitemnum;
210                 $orderinfo->{biblionumber}=$biblionumber;
211     }
212
213     # if we already have $ordnum, then it's an ordermodif
214     if ($$orderinfo{ordnum}) {
215         ModOrder( $orderinfo);
216     }
217     else { # else, it's a new line
218         @$orderinfo{qw(basketno ordnum )} = NewOrder($orderinfo);
219     }
220
221     # now, add items if applicable
222     if (C4::Context->preference('AcqCreateItem') eq 'ordering') {
223
224         my @tags         = $input->param('tag');
225         my @subfields    = $input->param('subfield');
226         my @field_values = $input->param('field_value');
227         my @serials      = $input->param('serial');
228         my @itemid       = $input->param('itemid');
229         my @ind_tag      = $input->param('ind_tag');
230         my @indicator    = $input->param('indicator');
231         #Rebuilding ALL the data for items into a hash
232         # parting them on $itemid.
233
234         my %itemhash;
235         my $countdistinct;
236         my $range=scalar(@itemid);
237         for (my $i=0; $i<$range; $i++){
238             unless ($itemhash{$itemid[$i]}){
239             $countdistinct++;
240             }
241             push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
242             push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
243             push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
244             push @{$itemhash{$itemid[$i]}->{'ind_tag'}},$ind_tag[$i];
245             push @{$itemhash{$itemid[$i]}->{'indicator'}},$indicator[$i];
246         }
247         foreach my $item (keys %itemhash){
248
249             my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
250                                     $itemhash{$item}->{'subfields'},
251                                     $itemhash{$item}->{'field_values'},
252                                     $itemhash{$item}->{'ind_tag'},
253                                     $itemhash{$item}->{'indicator'},
254                                     'ITEM');
255             my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
256             my ($biblionumber,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$$orderinfo{biblionumber});
257             NewOrderItem($itemnumber, $$orderinfo{ordnum});
258
259         }
260     }
261
262 }
263
264 else { # qty=0, delete the line
265     my $biblionumber = $input->param('biblionumber');
266     DelOrder( $biblionumber, $$orderinfo{ordnum} );
267 }
268 my $basketno=$$orderinfo{basketno};
269 my $booksellerid=$$orderinfo{booksellerid};
270 if (my $import_batch_id=$$orderinfo{import_batch_id}) {
271     print $input->redirect("/cgi-bin/koha/acqui/addorderiso2709.pl?import_batch_id=$import_batch_id&basketno=$basketno&booksellerid=$booksellerid");
272 } else {
273     print $input->redirect("/cgi-bin/koha/acqui/basket.pl?basketno=$basketno");
274 }