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