Bug 29955: Move populate_order_with_prices to Koha namespace
[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
141 ### "-------------------- addorder.pl ----------"
142
143 # FIXME: This needs to do actual error checking and possibly return user to the same form,
144 # not just blindly call C4 functions and print a redirect.  
145
146 my $input = CGI->new;
147 my $use_ACQ_framework = $input->param('use_ACQ_framework');
148
149 # Check if order total amount exceed allowed budget
150 my $confirm_budget_exceeding = $input->param('confirm_budget_exceeding');
151 unless($confirm_budget_exceeding) {
152     my $budget_id = $input->param('budget_id');
153     my $total = $input->param('total');
154     my $budget = GetBudget($budget_id);
155     my $budget_spent = GetBudgetSpent($budget_id);
156     my $budget_ordered = GetBudgetOrdered($budget_id);
157     my $budget_used = $budget_spent + $budget_ordered;
158     my $budget_remaining = $budget->{budget_amount} - $budget_used;
159     my $budget_encumbrance = $budget->{budget_amount} * $budget->{budget_encumb} / 100;
160     my $budget_expenditure = $budget->{budget_expend};
161
162     if ( $total > $budget_remaining
163       || ( ($budget_encumbrance+0) && ($budget_used + $total) > $budget_encumbrance)
164       || ( ($budget_expenditure+0) && ($budget_used + $total) > $budget_expenditure) )
165     {
166         my ($template, $loggedinuser, $cookie) = get_template_and_user({
167             template_name   => "acqui/addorder.tt",
168             query           => $input,
169             type            => "intranet",
170             flagsrequired   => {acquisition => 'order_manage'},
171         });
172
173         my $url = $input->referer();
174         unless ( defined $url ) {
175             my $basketno = $input->param('basketno');
176             $url = "/cgi-bin/koha/acqui/basket.pl?basketno=$basketno";
177         }
178
179         my $vars = $input->Vars;
180         my @vars_loop;
181         foreach (keys %$vars) {
182             push @vars_loop, {
183                 name => $_,
184                 values => [$input->param($_)],
185             };
186         }
187
188         if( ($budget_encumbrance+0) && ($budget_used + $total) > $budget_encumbrance
189           && $total <= $budget_remaining)
190         {
191             $template->param(
192                 encumbrance_exceeded => 1,
193                 encumbrance => sprintf("%.2f", $budget->{'budget_encumb'}),
194             );
195         }
196         if( ($budget_expenditure+0) && ($budget_used + $total) > $budget_expenditure
197           && $total <= $budget_remaining )
198         {
199             my $currency = Koha::Acquisition::Currencies->get_active;
200             $template->param(
201                 expenditure_exceeded => 1,
202                 expenditure => sprintf("%.2f", $budget_expenditure),
203                 currency => ($currency) ? $currency->symbol : '',
204             );
205         }
206         if($total > $budget_remaining){
207             $template->param(budget_exceeded => 1);
208         }
209
210         $template->param(
211             not_enough_budget => 1,
212             referer => $url,
213             vars_loop => \@vars_loop,
214         );
215         output_html_with_http_headers $input, $cookie, $template->output;
216         exit;
217     }
218 }
219
220 # get_template_and_user used only to check auth & get user id
221 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
222     {
223         template_name   => "acqui/booksellers.tt",
224         query           => $input,
225         type            => "intranet",
226         flagsrequired   => { acquisition => 'order_manage' },
227     }
228 );
229
230 # get CGI parameters
231 my $orderinfo = {
232     ordernumber => scalar $input->param('ordernumber'),
233     basketno => scalar $input->param('basketno'),
234     biblionumber => scalar $input->param('biblionumber'),
235     invoiceid => scalar $input->param('invoiceid'),
236     quantity => scalar $input->param('quantity'),
237     budget_id => scalar $input->param('budget_id'),
238     currency => scalar $input->param('currency'),
239     listprice => scalar $input->param('listprice'),
240     uncertainprice => scalar $input->param('uncertainprice'),
241     tax_rate_on_ordering => scalar $input->param('tax_rate'),
242     discount => scalar $input->param('discount'),
243     rrp => scalar $input->param('rrp'),
244     replacementprice => scalar $input->param('replacementprice'),
245     ecost => scalar $input->param('ecost'),
246     unitprice => scalar $input->param('unitprice'),
247     order_internalnote => scalar $input->param('order_internalnote'),
248     order_vendornote => scalar $input->param('order_vendornote'),
249     sort1 => scalar $input->param('sort1'),
250     sort2 => scalar $input->param('sort2'),
251     subscriptionid => scalar $input->param('subscriptionid'),
252 };
253
254 $orderinfo->{uncertainprice} ||= 0;
255 $orderinfo->{subscriptionid} ||= undef;
256
257 my $user     = $input->remote_user;
258 my $basketno = $$orderinfo{basketno};
259 my $basket   = Koha::Acquisition::Baskets->find($basketno);
260
261 # Order related fields we're going to log
262 my @log_order_fields = (
263     'quantity',
264     'listprice',
265     'unitprice',
266     'unitprice_tax_excluded',
267     'unitprice_tax_included',
268     'rrp',
269     'replacementprice',
270     'rrp_tax_excluded',
271     'rrp_tax_included',
272     'ecost',
273     'ecost_tax_excluded',
274     'ecost_tax_included',
275     'tax_rate_on_ordering'
276 );
277
278 # create, modify or delete biblio
279 # create if $quantity>0 and $existing='no'
280 # modify if $quantity>0 and $existing='yes'
281 if ( $basket->{is_standing} || $orderinfo->{quantity} ne '0' ) {
282     #TODO:check to see if biblio exists
283     unless ( $$orderinfo{biblionumber} ) {
284
285         my $record;
286         if ( $use_ACQ_framework ) {
287             my @tags         = $input->multi_param('bib_tag');
288             my @subfields    = $input->multi_param('bib_subfield');
289             my @field_values = $input->multi_param('bib_field_value');
290             my $xml = TransformHtmlToXml( \@tags, \@subfields, \@field_values );
291             $record=MARC::Record::new_from_xml($xml, 'UTF-8');
292         } else {
293             #if it doesn't create it
294             $record = TransformKohaToMarc(
295                 {
296                     "biblio.title"                => $input->param('title') || '',
297                     "biblio.author"               => $input->param('author') || '',
298                     "biblio.seriestitle"          => $input->param('series') || '',
299                     "biblioitems.isbn"            => $input->param('isbn') || '',
300                     "biblioitems.ean"             => $input->param('ean') || '',
301                     "biblioitems.publishercode"   => $input->param('publishercode') || '',
302                     "biblioitems.publicationyear" => $input->param('publicationyear') || '',
303                     "biblio.copyrightdate"        => $input->param('publicationyear') || '',
304                     "biblioitems.itemtype"        => $input->param('itemtype') || '',
305                     "biblioitems.editionstatement"=> $input->param('editionstatement') || '',
306                 }
307             );
308         }
309         C4::Acquisition::FillWithDefaultValues( $record );
310
311         # create the record in catalogue, with framework ''
312         my ($biblionumber,$bibitemnum) = AddBiblio($record,'');
313
314         $orderinfo->{biblionumber}=$biblionumber;
315     }
316
317     # change suggestion status if applicable
318     if ( my $suggestionid = $input->param('suggestionid') ) {
319         ModSuggestion(
320             {
321                 suggestionid => $suggestionid,
322                 biblionumber => $orderinfo->{biblionumber},
323                 STATUS       => 'ORDERED',
324             }
325         );
326     }
327
328     $orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq '';
329
330     my $order;
331     my $log_action_name;
332     if ( $orderinfo->{ordernumber} ) {
333         $order = Koha::Acquisition::Orders->find($orderinfo->{ordernumber});
334         $order->set($orderinfo);
335         $log_action_name = 'MODIFY_ORDER';
336     } else {
337         $order = Koha::Acquisition::Order->new($orderinfo);
338         $log_action_name = 'CREATE_ORDER';
339     }
340     $order->populate_with_prices_for_ordering();
341     $order->store;
342
343     # Log the order creation
344     if (C4::Context->preference("AcquisitionLog")) {
345         my $infos = {};
346         foreach my $field(@log_order_fields) {
347             $infos->{$field} = $order->$field;
348         }
349         logaction(
350             'ACQUISITIONS',
351             $log_action_name,
352             $order->ordernumber,
353             encode_json($infos)
354         );
355     }
356     my $order_users_ids = $input->param('users_ids');
357     my @order_users = split( /:/, $order_users_ids );
358     ModOrderUsers( $order->ordernumber, @order_users );
359
360     # now, add items if applicable
361     if ($basket->effective_create_items eq 'ordering') {
362
363         my @tags         = $input->multi_param('tag');
364         my @subfields    = $input->multi_param('subfield');
365         my @field_values = $input->multi_param('field_value');
366         my @serials      = $input->multi_param('serial');
367         my @itemid       = $input->multi_param('itemid');
368         #Rebuilding ALL the data for items into a hash
369         # parting them on $itemid.
370
371         my %itemhash;
372         my $countdistinct;
373         my $range=scalar(@itemid);
374         for (my $i=0; $i<$range; $i++){
375             unless ($itemhash{$itemid[$i]}){
376             $countdistinct++;
377             }
378         push @{$itemhash{$itemid[$i]}->{'tags'}},$tags[$i];
379         push @{$itemhash{$itemid[$i]}->{'subfields'}},$subfields[$i];
380             push @{$itemhash{$itemid[$i]}->{'field_values'}},$field_values[$i];
381         }
382         foreach my $item (keys %itemhash){
383             my $xml = TransformHtmlToXml( $itemhash{$item}->{'tags'},
384                                     $itemhash{$item}->{'subfields'},
385                                     $itemhash{$item}->{'field_values'},
386                                     undef,
387                                     undef,
388                                     'ITEM');
389             my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
390             my ($barcodefield,$barcodesubfield) = GetMarcFromKohaField('items.barcode');
391             next unless ( defined $barcodefield && defined $barcodesubfield );
392             my $barcode = $record->subfield($barcodefield,$barcodesubfield) || '';
393             my $aBpref = C4::Context->preference('autoBarcode');
394             if( $barcode eq '' && $aBpref ne 'OFF'){
395                 my $barcodeobj;
396                 if ( $aBpref eq 'hbyymmincr'){
397                     my ($homebranchfield,$homebranchsubfield) = GetMarcFromKohaField('items.homebranch');
398                     my $homebranch = $record->subfield($homebranchfield,$homebranchsubfield);
399                     $barcodeobj = C4::Barcodes->new($aBpref, $homebranch);
400                 } else {
401                     $barcodeobj = C4::Barcodes->new($aBpref);
402                 }
403                 $barcode = $barcodeobj->value();
404                 $record->field($barcodefield)->delete_subfield( code => $barcodesubfield);
405                 $record->field($barcodefield)->add_subfields($barcodesubfield => $barcode);
406             }
407             my ($biblionumber,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$$orderinfo{biblionumber});
408             $order->add_item($itemnumber);
409         }
410     }
411
412 }
413
414 if (C4::Context->preference("AcquisitionLog") && $basketno) {
415     my $modified = Koha::Acquisition::Baskets->find( $basketno );
416     logaction(
417         'ACQUISITIONS',
418         'MODIFY_BASKET',
419         $basketno,
420         to_json($modified->unblessed)
421     );
422 }
423
424 my $booksellerid=$$orderinfo{booksellerid};
425 if (my $import_batch_id = $input->param('import_batch_id')) {
426     print $input->redirect("/cgi-bin/koha/acqui/addorderiso2709.pl?import_batch_id=$import_batch_id&basketno=$basketno&booksellerid=$booksellerid");
427 } elsif ( defined $orderinfo->{invoiceid} ) {
428     print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoiceid=" . $orderinfo->{invoiceid});
429 } else {
430     print $input->redirect("/cgi-bin/koha/acqui/basket.pl?basketno=$basketno");
431 }