Bug 29554: Do not hide display of itemtypes on neworderempty
[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
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
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 neworderempty.pl to add an order from an existing record or from nothing.
36
37 =item newordersuggestion.pl to add an order from an existing suggestion.
38
39 =back
40
41 =head1 CGI PARAMETERS
42
43 All of the cgi parameters below are related to the new order.
44
45 =over
46
47 =item C<ordernumber>
48 the number of this new order.
49
50 =item C<basketno>
51 the number of this new basket
52
53 =item C<booksellerid>
54 the bookseller the librarian has to pay.
55
56 =item C<existing>
57
58 =item C<title>
59 the title of the record ordered.
60
61 =item C<author>
62 the author of the record ordered.
63
64 =item C<copyrightdate>
65 the copyrightdate of the record ordered.
66
67 =item C<ISBN>
68 the ISBN of the record ordered.
69
70 =item C<format>
71
72 =item C<quantity>
73 the quantity to order.
74
75 =item C<listprice>
76 the price of this order.
77
78 =item C<uncertainprice>
79 uncertain price, can't close basket until prices of all orders are known.
80
81 =item C<branch>
82 the branch where this order will be received.
83
84 =item C<series>
85
86 =item C<notes>
87 Notes on this basket.
88
89 =item C<budget_id>
90 budget_id used to pay this order.
91
92 =item C<sort1> & C<sort2>
93
94 =item C<rrp>
95
96 =item C<ecost>
97
98 =item C<GST>
99
100 =item C<budget>
101
102 =item C<cost>
103
104 =item C<sub>
105
106 =item C<invoice>
107 the number of the invoice for this order.
108
109 =item C<publishercode>
110
111 =item C<suggestionid>
112 if it is an order from an existing suggestion : the id of this suggestion.
113
114 =item C<donation>
115
116 =back
117
118 =cut
119
120 use Modern::Perl;
121 use CGI qw ( -utf8 );
122 use JSON qw ( to_json encode_json );
123 use C4::Auth qw( get_template_and_user );
124 use C4::Acquisition qw( FillWithDefaultValues ModOrderUsers );
125 use C4::Suggestions qw( ModSuggestion );
126 use C4::Biblio qw(
127     AddBiblio
128     GetMarcFromKohaField
129     TransformHtmlToXml
130     TransformKohaToMarc
131 );
132 use C4::Budgets qw( GetBudget GetBudgetSpent GetBudgetOrdered );
133 use C4::Items qw( AddItemFromMarc );
134 use C4::Output qw( output_html_with_http_headers );
135 use C4::Log qw( logaction );
136 use Koha::Acquisition::Currencies qw( get_active );
137 use Koha::Acquisition::Orders;
138 use Koha::Acquisition::Baskets;
139 use C4::Barcodes;
140 use Koha::DateUtils qw( dt_from_string );
141
142 ### "-------------------- addorder.pl ----------"
143
144 # FIXME: This needs to do actual error checking and possibly return user to the same form,
145 # not just blindly call C4 functions and print a redirect.  
146
147 my $input = CGI->new;
148 my $use_ACQ_framework = $input->param('use_ACQ_framework');
149
150 # Check if order total amount exceed allowed budget
151 my $confirm_budget_exceeding = $input->param('confirm_budget_exceeding');
152 unless($confirm_budget_exceeding) {
153     my $budget_id = $input->param('budget_id');
154     my $total = $input->param('total');
155     my $budget = GetBudget($budget_id);
156     my $budget_spent = GetBudgetSpent($budget_id);
157     my $budget_ordered = GetBudgetOrdered($budget_id);
158     my $budget_used = $budget_spent + $budget_ordered;
159     my $budget_remaining = $budget->{budget_amount} - $budget_used;
160     my $budget_encumbrance = $budget->{budget_amount} * $budget->{budget_encumb} / 100;
161     my $budget_expenditure = $budget->{budget_expend};
162
163     if ( $total > $budget_remaining
164       || ( ($budget_encumbrance+0) && ($budget_used + $total) > $budget_encumbrance)
165       || ( ($budget_expenditure+0) && ($budget_used + $total) > $budget_expenditure) )
166     {
167         my ($template, $loggedinuser, $cookie) = get_template_and_user({
168             template_name   => "acqui/addorder.tt",
169             query           => $input,
170             type            => "intranet",
171             flagsrequired   => {acquisition => 'order_manage'},
172         });
173
174         my $url = $input->referer();
175         unless ( defined $url ) {
176             my $basketno = $input->param('basketno');
177             $url = "/cgi-bin/koha/acqui/basket.pl?basketno=$basketno";
178         }
179
180         my $vars = $input->Vars;
181         my @vars_loop;
182         foreach (keys %$vars) {
183             push @vars_loop, {
184                 name => $_,
185                 values => [$input->param($_)],
186             };
187         }
188
189         if( ($budget_encumbrance+0) && ($budget_used + $total) > $budget_encumbrance
190           && $total <= $budget_remaining)
191         {
192             $template->param(
193                 encumbrance_exceeded => 1,
194                 encumbrance => sprintf("%.2f", $budget->{'budget_encumb'}),
195             );
196         }
197         if( ($budget_expenditure+0) && ($budget_used + $total) > $budget_expenditure
198           && $total <= $budget_remaining )
199         {
200             my $currency = Koha::Acquisition::Currencies->get_active;
201             $template->param(
202                 expenditure_exceeded => 1,
203                 expenditure => sprintf("%.2f", $budget_expenditure),
204                 currency => ($currency) ? $currency->symbol : '',
205             );
206         }
207         if($total > $budget_remaining){
208             $template->param(budget_exceeded => 1);
209         }
210
211         $template->param(
212             not_enough_budget => 1,
213             referer => $url,
214             vars_loop => \@vars_loop,
215         );
216         output_html_with_http_headers $input, $cookie, $template->output;
217         exit;
218     }
219 }
220
221 # get_template_and_user used only to check auth & get user id
222 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
223     {
224         template_name   => "acqui/booksellers.tt",
225         query           => $input,
226         type            => "intranet",
227         flagsrequired   => { acquisition => 'order_manage' },
228     }
229 );
230
231 # get CGI parameters
232 my $orderinfo = {
233     ordernumber          => scalar $input->param('ordernumber'),
234     basketno             => scalar $input->param('basketno'),
235     biblionumber         => scalar $input->param('biblionumber'),
236     invoiceid            => scalar $input->param('invoiceid'),
237     quantity             => scalar $input->param('quantity'),
238     budget_id            => scalar $input->param('budget_id'),
239     currency             => scalar $input->param('currency'),
240     listprice            => scalar $input->param('listprice'),
241     uncertainprice       => scalar $input->param('uncertainprice'),
242     tax_rate_on_ordering => scalar $input->param('tax_rate'),
243     discount             => scalar $input->param('discount'),
244     rrp                  => scalar $input->param('rrp'),
245     replacementprice     => scalar $input->param('replacementprice'),
246     ecost                => scalar $input->param('ecost'),
247     unitprice            => scalar $input->param('unitprice'),
248     order_internalnote   => scalar $input->param('order_internalnote'),
249     order_vendornote     => scalar $input->param('order_vendornote'),
250     sort1                => scalar $input->param('sort1'),
251     sort2                => scalar $input->param('sort2'),
252     subscriptionid       => scalar $input->param('subscriptionid'),
253 };
254
255 $orderinfo->{uncertainprice} ||= 0;
256 $orderinfo->{subscriptionid} ||= undef;
257
258 my $user     = $input->remote_user;
259 my $basketno = $$orderinfo{basketno};
260 my $basket   = Koha::Acquisition::Baskets->find($basketno);
261
262 # Order related fields we're going to log
263 my @log_order_fields = (
264     'quantity',
265     'listprice',
266     'unitprice',
267     'unitprice_tax_excluded',
268     'unitprice_tax_included',
269     'rrp',
270     'replacementprice',
271     'rrp_tax_excluded',
272     'rrp_tax_included',
273     'ecost',
274     'ecost_tax_excluded',
275     'ecost_tax_included',
276     'tax_rate_on_ordering'
277 );
278
279 # create, modify or delete biblio
280 # create if $quantity>0 and $existing='no'
281 # modify if $quantity>0 and $existing='yes'
282 if ( $basket->{is_standing} || $orderinfo->{quantity} ne '0' ) {
283     #TODO:check to see if biblio exists
284     unless ( $$orderinfo{biblionumber} ) {
285
286         my $record;
287         if ( $use_ACQ_framework ) {
288             my @tags         = $input->multi_param('bib_tag');
289             my @subfields    = $input->multi_param('bib_subfield');
290             my @field_values = $input->multi_param('bib_field_value');
291             my $xml = TransformHtmlToXml( \@tags, \@subfields, \@field_values );
292             $record=MARC::Record::new_from_xml($xml, 'UTF-8');
293         } else {
294             #if it doesn't create it
295             $record = TransformKohaToMarc(
296                 {
297                     "biblio.title"                => $input->param('title') || '',
298                     "biblio.author"               => $input->param('author') || '',
299                     "biblio.seriestitle"          => $input->param('series') || '',
300                     "biblioitems.isbn"            => $input->param('isbn') || '',
301                     "biblioitems.ean"             => $input->param('ean') || '',
302                     "biblioitems.publishercode"   => $input->param('publishercode') || '',
303                     "biblioitems.publicationyear" => $input->param('publicationyear') || '',
304                     "biblio.copyrightdate"        => $input->param('publicationyear') || '',
305                     "biblioitems.itemtype"        => $input->param('itemtype') || '',
306                     "biblioitems.editionstatement"=> $input->param('editionstatement') || '',
307                 }
308             );
309         }
310         C4::Acquisition::FillWithDefaultValues( $record );
311
312         # create the record in catalogue, with framework ''
313         my ($biblionumber,$bibitemnum) = AddBiblio($record,'');
314
315         $orderinfo->{biblionumber}=$biblionumber;
316     }
317
318     # change suggestion status if applicable
319     if ( my $suggestionid = $input->param('suggestionid') ) {
320         ModSuggestion(
321             {
322                 suggestionid => $suggestionid,
323                 biblionumber => $orderinfo->{biblionumber},
324                 STATUS       => 'ORDERED',
325             }
326         );
327     }
328
329     $orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq '';
330     $orderinfo->{estimated_delivery_date} = $orderinfo->{estimated_delivery_date} ? dt_from_string($orderinfo->{estimated_delivery_date}) : undef;
331
332     my $order;
333     my $log_action_name;
334
335     if ( $orderinfo->{ordernumber} ) {
336         $order = Koha::Acquisition::Orders->find($orderinfo->{ordernumber});
337         $order->set($orderinfo);
338         $log_action_name = 'MODIFY_ORDER';
339     } else {
340         $order = Koha::Acquisition::Order->new($orderinfo);
341         $log_action_name = 'CREATE_ORDER';
342     }
343     $order->populate_with_prices_for_ordering();
344     $order->store;
345
346     # Log the order creation
347     if (C4::Context->preference("AcquisitionLog")) {
348         my $infos = {};
349         foreach my $field(@log_order_fields) {
350             $infos->{$field} = $order->$field;
351         }
352         logaction(
353             'ACQUISITIONS',
354             $log_action_name,
355             $order->ordernumber,
356             encode_json($infos)
357         );
358     }
359     my $order_users_ids = $input->param('users_ids');
360     my @order_users = split( /:/, $order_users_ids );
361     ModOrderUsers( $order->ordernumber, @order_users );
362
363     # now, add items if applicable
364     if ($basket->effective_create_items eq 'ordering') {
365
366         my @tags         = $input->multi_param('tag');
367         my @subfields    = $input->multi_param('subfield');
368         my @field_values = $input->multi_param('field_value');
369         my @serials      = $input->multi_param('serial');
370         my @itemid       = $input->multi_param('itemid');
371         #Rebuilding ALL the data for items into a hash
372         # parting them on $itemid.
373
374         my %itemhash;
375         my $countdistinct;
376         my $range=scalar(@itemid);
377         for (my $i=0; $i<$range; $i++){
378             unless ($itemhash{$itemid[$i]}){
379             $countdistinct++;
380             }
381         push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
382         push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
383             push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
384         }
385         foreach my $item (keys %itemhash){
386             my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
387                                     $itemhash{$item}->{'subfields'},
388                                     $itemhash{$item}->{'field_values'},
389                                     undef,
390                                     undef,
391                                     'ITEM');
392             my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
393             my ($barcodefield,$barcodesubfield) = GetMarcFromKohaField('items.barcode');
394             next unless ( defined $barcodefield && defined $barcodesubfield );
395             my $barcode = $record->subfield($barcodefield,$barcodesubfield) || '';
396             my $aBpref = C4::Context->preference('autoBarcode');
397             if( $barcode eq '' && $aBpref ne 'OFF'){
398                 my $barcodeobj;
399                 if ( $aBpref eq 'hbyymmincr'){
400                     my ($homebranchfield,$homebranchsubfield) = GetMarcFromKohaField('items.homebranch');
401                     my $homebranch = $record->subfield($homebranchfield,$homebranchsubfield);
402                     $barcodeobj = C4::Barcodes->new($aBpref, $homebranch);
403                 } else {
404                     $barcodeobj = C4::Barcodes->new($aBpref);
405                 }
406                 $barcode = $barcodeobj->value();
407                 $record->field($barcodefield)->delete_subfield( code => $barcodesubfield);
408                 $record->field($barcodefield)->add_subfields($barcodesubfield => $barcode);
409             }
410             my ($biblionumber,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$$orderinfo{biblionumber});
411             $order->add_item($itemnumber);
412         }
413     }
414
415 }
416
417 if (C4::Context->preference("AcquisitionLog") && $basketno) {
418     my $modified = Koha::Acquisition::Baskets->find( $basketno );
419     logaction(
420         'ACQUISITIONS',
421         'MODIFY_BASKET',
422         $basketno,
423         to_json($modified->unblessed)
424     );
425 }
426
427 my $booksellerid=$$orderinfo{booksellerid};
428 if (my $import_batch_id = $input->param('import_batch_id')) {
429     print $input->redirect("/cgi-bin/koha/acqui/addorderiso2709.pl?import_batch_id=$import_batch_id&basketno=$basketno&booksellerid=$booksellerid");
430 } elsif ( defined $orderinfo->{invoiceid} ) {
431     print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoiceid=" . $orderinfo->{invoiceid});
432 } else {
433     print $input->redirect("/cgi-bin/koha/acqui/basket.pl?basketno=$basketno");
434 }