Bug 12844: Use Koha::Number::Price where it can be useful
[koha.git] / acqui / addorderiso2709.pl
1 #!/usr/bin/perl
2
3 #A script that lets the user populate a basket from an iso2709 file
4 #the script first displays a list of import batches, then when a batch is selected displays all the biblios in it.
5 #The user can then pick which biblios he wants to order
6
7 # Copyright 2008 - 2011 BibLibre SARL
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with Koha; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
24 use Modern::Perl;
25 use CGI;
26 use Carp;
27 use Number::Format qw(:all);
28 use YAML qw/Load/;
29
30 use C4::Context;
31 use C4::Auth;
32 use C4::Input;
33 use C4::Output;
34 use C4::ImportBatch;
35 use C4::Matcher;
36 use C4::Search qw/FindDuplicate/;
37 use C4::Acquisition;
38 use C4::Biblio;
39 use C4::Items;
40 use C4::Koha;
41 use C4::Budgets;
42 use C4::Acquisition;
43 use C4::Bookseller qw/GetBookSellerFromId/;
44 use C4::Suggestions;    # GetSuggestion
45 use C4::Branch;         # GetBranches
46 use C4::Members;
47
48 my $input = new CGI;
49 my ($template, $loggedinuser, $cookie, $userflags) = get_template_and_user({
50     template_name => "acqui/addorderiso2709.tt",
51     query => $input,
52     type => "intranet",
53     authnotrequired => 0,
54     flagsrequired   => { acquisition => 'order_manage' },
55     debug => 1,
56 });
57
58 my $cgiparams = $input->Vars;
59 my $op = $cgiparams->{'op'} || '';
60 my $booksellerid  = $input->param('booksellerid');
61 my $bookseller = GetBookSellerFromId($booksellerid);
62 my $data;
63
64 $template->param(scriptname => "/cgi-bin/koha/acqui/addorderiso2709.pl",
65                 booksellerid => $booksellerid,
66                 booksellername => $bookseller->{name},
67                 );
68
69 if ($cgiparams->{'import_batch_id'} && $op eq ""){
70     $op = "batch_details";
71 }
72
73 #Needed parameters:
74 if (! $cgiparams->{'basketno'}){
75     die "Basketnumber required to order from iso2709 file import";
76 }
77
78 #
79 # 1st step = choose the file to import into acquisition
80 #
81 if ($op eq ""){
82     $template->param("basketno" => $cgiparams->{'basketno'});
83 #display batches
84     import_batches_list($template);
85 #
86 # 2nd step = display the content of the choosen file
87 #
88 } elsif ($op eq "batch_details"){
89 #display lines inside the selected batch
90     # get currencies (for change rates calcs if needed)
91     my $active_currency = GetCurrency();
92     my $default_currency;
93     if (! $data->{currency} ) { # New order no currency set
94         if ( $bookseller->{listprice} ) {
95             $default_currency = $bookseller->{listprice};
96         }
97         else {
98             $default_currency = $active_currency->{currency};
99         }
100     }
101     my @rates = GetCurrencies();
102
103     # ## @rates
104
105     my @loop_currency = ();
106     for my $curr ( @rates ) {
107         my $selected;
108         if ($data->{currency} ) {
109             $selected = $curr->{currency} eq $data->{currency};
110         }
111         else {
112             $selected = $curr->{currency} eq $default_currency;
113         }
114         push @loop_currency, {
115             currcode => $curr->{currency},
116             rate     => $curr->{rate},
117             selected => $selected,
118         }
119     }
120
121     $template->param("batch_details" => 1,
122                      "basketno"      => $cgiparams->{'basketno'},
123                      loop_currencies  => \@loop_currency,
124                      );
125     import_biblios_list($template, $cgiparams->{'import_batch_id'});
126     if ( C4::Context->preference('AcqCreateItem') eq 'ordering' ) {
127         # prepare empty item form
128         my $cell = PrepareItemrecordDisplay( '', '', '', 'ACQ' );
129
130         #     warn "==> ".Data::Dumper::Dumper($cell);
131         unless ($cell) {
132             $cell = PrepareItemrecordDisplay( '', '', '', '' );
133             $template->param( 'NoACQframework' => 1 );
134         }
135         my @itemloop;
136         push @itemloop, $cell;
137
138         $template->param( items => \@itemloop );
139     }
140 #
141 # 3rd step = import the records
142 #
143 } elsif ( $op eq 'import_records' ) {
144 #import selected lines
145     $template->param('basketno' => $cgiparams->{'basketno'});
146 # Budget_id is mandatory for adding an order, we just add a default, the user needs to modify this aftewards
147     my $budgets = GetBudgets();
148     if (scalar @$budgets == 0){
149         die "No budgets defined, can't continue";
150     }
151     my $budget_id = @$budgets[0]->{'budget_id'};
152 #get all records from a batch, and check their import status to see if they are checked.
153 #(default values: quantity 1, uncertainprice yes, first budget)
154
155     # retrieve the file you want to import
156     my $import_batch_id = $cgiparams->{'import_batch_id'};
157     my $biblios = GetImportRecordsRange($import_batch_id);
158     my @import_record_id_selected = $input->param("import_record_id");
159     my @quantities = $input->param('quantity');
160     my @prices = $input->param('price');
161     my @budgets_id = $input->param('budget_id');
162     my @discount = $input->param('discount');
163     my @sort1 = $input->param('sort1');
164     my @sort2 = $input->param('sort2');
165     my $cur = GetCurrency();
166     for my $biblio (@$biblios){
167         # Check if this import_record_id was selected
168         next if not grep { $_ eq $$biblio{import_record_id} } @import_record_id_selected;
169         my ( $marcblob, $encoding ) = GetImportRecordMarc( $biblio->{'import_record_id'} );
170         my $marcrecord = MARC::Record->new_from_usmarc($marcblob) || die "couldn't translate marc information";
171         my $match = GetImportRecordMatches( $biblio->{'import_record_id'}, 1 );
172         my $biblionumber=$#$match > -1?$match->[0]->{'biblionumber'}:0;
173         my $c_quantity = shift( @quantities ) || GetMarcQuantity($marcrecord, C4::Context->preference('marcflavour') ) || 1;
174         my $c_budget_id = shift( @budgets_id ) || $input->param('all_budget_id') || $budget_id;
175         my $c_discount = shift ( @discount);
176         $c_discount = $c_discount / 100 if $c_discount > 1;
177         my $c_sort1 = shift( @sort1 ) || $input->param('all_sort1') || '';
178         my $c_sort2 = shift( @sort2 ) || $input->param('all_sort2') || '';
179
180         # 1st insert the biblio, or find it through matcher
181         unless ( $biblionumber ) {
182             # add the biblio
183             my $bibitemnum;
184
185             # remove ISBN -
186             my ( $isbnfield, $isbnsubfield ) = GetMarcFromKohaField( 'biblioitems.isbn', '' );
187             if ( $marcrecord->field($isbnfield) ) {
188                 foreach my $field ( $marcrecord->field($isbnfield) ) {
189                     foreach my $subfield ( $field->subfield($isbnsubfield) ) {
190                         my $newisbn = $field->subfield($isbnsubfield);
191                         $newisbn =~ s/-//g;
192                         $field->update( $isbnsubfield => $newisbn );
193                     }
194                 }
195             }
196             ( $biblionumber, $bibitemnum ) = AddBiblio( $marcrecord, $cgiparams->{'frameworkcode'} || '' );
197             SetImportRecordStatus( $biblio->{'import_record_id'}, 'imported' );
198             # 2nd add authorities if applicable
199             if (C4::Context->preference("BiblioAddsAuthorities")){
200                 my $headings_linked =BiblioAutoLink($marcrecord, $cgiparams->{'frameworkcode'});
201             }
202         } else {
203             SetImportRecordStatus( $biblio->{'import_record_id'}, 'imported' );
204         }
205         # 3rd add order
206         my $patron = C4::Members::GetMember( borrowernumber => $loggedinuser );
207         my $branch = C4::Branch->GetBranchDetail( $patron->{branchcode} );
208         # get quantity in the MARC record (1 if none)
209         my $quantity = GetMarcQuantity($marcrecord, C4::Context->preference('marcflavour')) || 1;
210         my %orderinfo = (
211             biblionumber       => $biblionumber,
212             basketno           => $cgiparams->{'basketno'},
213             quantity           => $c_quantity,
214             branchcode         => $patron->{branchcode},
215             budget_id          => $c_budget_id,
216             uncertainprice     => 1,
217             sort1              => $c_sort1,
218             sort2              => $c_sort2,
219             order_internalnote => $cgiparams->{'all_order_internalnote'},
220             order_vendornote   => $cgiparams->{'all_order_vendornote'},
221             currency           => $cgiparams->{'all_currency'},
222         );
223         # get the price if there is one.
224         my $price= shift( @prices ) || GetMarcPrice($marcrecord, C4::Context->preference('marcflavour'));
225         if ($price){
226             # in France, the cents separator is the , but sometimes, ppl use a .
227             # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
228             $price =~ s/\./,/ if C4::Context->preference("CurrencyFormat") eq "FR";
229             $price = Koha::Number::Price->new($price)->unformat;
230             $orderinfo{gstrate} = $bookseller->{gstrate};
231             my $c = $c_discount ? $c_discount : $bookseller->{discount} / 100;
232             if ( $bookseller->{listincgst} ) {
233                 if ( $c_discount ) {
234                     $orderinfo{ecost} = $price;
235                     $orderinfo{rrp}   = $orderinfo{ecost} / ( 1 - $c );
236                 } else {
237                     $orderinfo{ecost} = $price * ( 1 - $c );
238                     $orderinfo{rrp}   = $price;
239                 }
240             } else {
241                 if ( $c_discount ) {
242                     $orderinfo{ecost} = $price / ( 1 + $orderinfo{gstrate} );
243                     $orderinfo{rrp}   = $orderinfo{ecost} / ( 1 - $c );
244                 } else {
245                     $orderinfo{rrp}   = $price / ( 1 + $orderinfo{gstrate} );
246                     $orderinfo{ecost} = $orderinfo{rrp} * ( 1 - $c );
247                 }
248             }
249             $orderinfo{listprice} = $orderinfo{rrp} / $cur->{rate};
250             $orderinfo{unitprice} = $orderinfo{ecost};
251             $orderinfo{total} = $orderinfo{ecost} * $c_quantity;
252         } else {
253             $orderinfo{listprice} = 0;
254         }
255
256         # remove uncertainprice flag if we have found a price in the MARC record
257         $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
258         my $ordernumber = NewOrder( \%orderinfo );
259
260         # 4th, add items if applicable
261         # parse the item sent by the form, and create an item just for the import_record_id we are dealing with
262         # this is not optimised, but it's working !
263         if ( C4::Context->preference('AcqCreateItem') eq 'ordering' ) {
264             my @tags         = $input->param('tag');
265             my @subfields    = $input->param('subfield');
266             my @field_values = $input->param('field_value');
267             my @serials      = $input->param('serial');
268             my @ind_tag   = $input->param('ind_tag');
269             my @indicator = $input->param('indicator');
270             my $item;
271             push @{ $item->{tags} },         $tags[0];
272             push @{ $item->{subfields} },    $subfields[0];
273             push @{ $item->{field_values} }, $field_values[0];
274             push @{ $item->{ind_tag} },      $ind_tag[0];
275             push @{ $item->{indicator} },    $indicator[0];
276             my $xml = TransformHtmlToXml( \@tags, \@subfields, \@field_values, \@ind_tag, \@indicator );
277             my $record = MARC::Record::new_from_xml( $xml, 'UTF-8' );
278             for (my $qtyloop=1;$qtyloop <= $c_quantity;$qtyloop++) {
279                 my ( $biblionumber, $bibitemnum, $itemnumber ) = AddItemFromMarc( $record, $biblionumber );
280                 NewOrderItem( $itemnumber, $ordernumber );
281             }
282         } else {
283             SetImportRecordStatus( $biblio->{'import_record_id'}, 'imported' );
284         }
285     }
286     # go to basket page
287     print $input->redirect("/cgi-bin/koha/acqui/basket.pl?basketno=".$cgiparams->{'basketno'});
288     exit;
289 }
290
291 my $budgets = GetBudgets();
292 my $budget_id = @$budgets[0]->{'budget_id'};
293 # build bookfund list
294 my $borrower = GetMember( 'borrowernumber' => $loggedinuser );
295 my ( $flags, $homebranch ) = ( $borrower->{'flags'}, $borrower->{'branchcode'} );
296 my $budget = GetBudget($budget_id);
297
298 # build budget list
299 my $budget_loop = [];
300 my $budgets_hierarchy = GetBudgetHierarchy;
301 foreach my $r ( @{$budgets_hierarchy} ) {
302     next unless (CanUserUseBudget($borrower, $r, $userflags));
303     if ( !defined $r->{budget_amount} || $r->{budget_amount} == 0 ) {
304         next;
305     }
306     push @{$budget_loop},
307       { b_id  => $r->{budget_id},
308         b_txt => $r->{budget_name},
309         b_sort1_authcat => $r->{'sort1_authcat'},
310         b_sort2_authcat => $r->{'sort2_authcat'},
311         b_active => $r->{budget_period_active},
312         b_sel => ( $r->{budget_id} == $budget_id ) ? 1 : 0,
313       };
314 }
315
316 @{$budget_loop} =
317   sort { uc( $a->{b_txt}) cmp uc( $b->{b_txt}) } @{$budget_loop};
318
319 $template->param( budget_loop    => $budget_loop,);
320
321 output_html_with_http_headers $input, $cookie, $template->output;
322
323
324 sub import_batches_list {
325     my ($template) = @_;
326     my $batches = GetImportBatchRangeDesc();
327
328     my @list = ();
329     foreach my $batch (@$batches) {
330         if ( $batch->{'import_status'} =~ /^staged$|^reverted$/ ) {
331             # check if there is at least 1 line still staged
332             my $stagedList=GetImportRecordsRange($batch->{'import_batch_id'}, undef, undef, $batch->{import_status}, { order_by_direction => 'ASC' });
333             if (scalar @$stagedList) {
334                 push @list, {
335                         import_batch_id => $batch->{'import_batch_id'},
336                         num_records => $batch->{'num_records'},
337                         num_items => $batch->{'num_items'},
338                         staged_date => $batch->{'upload_timestamp'},
339                         import_status => $batch->{'import_status'},
340                         file_name => $batch->{'file_name'},
341                         comments => $batch->{'comments'},
342                 };
343             } else {
344                 # if there are no more line to includes, set the status to imported
345                 SetImportBatchStatus( $batch->{'import_batch_id'}, 'imported' );
346             }
347         }
348     }
349     $template->param(batch_list => \@list); 
350     my $num_batches = GetNumberOfNonZ3950ImportBatches();
351     $template->param(num_results => $num_batches);
352 }
353
354 sub import_biblios_list {
355     my ($template, $import_batch_id) = @_;
356     my $batch = GetImportBatch($import_batch_id,'staged');
357     return () unless $batch and $batch->{import_status} =~ /^staged$|^reverted$/;
358     my $biblios = GetImportRecordsRange($import_batch_id,'','',$batch->{import_status});
359     my @list = ();
360
361     foreach my $biblio (@$biblios) {
362         my $citation = $biblio->{'title'};
363         $citation .= " $biblio->{'author'}" if $biblio->{'author'};
364         $citation .= " (" if $biblio->{'issn'} or $biblio->{'isbn'};
365         $citation .= $biblio->{'isbn'} if $biblio->{'isbn'};
366         $citation .= ", " if $biblio->{'issn'} and $biblio->{'isbn'};
367         $citation .= $biblio->{'issn'} if $biblio->{'issn'};
368         $citation .= ")" if $biblio->{'issn'} or $biblio->{'isbn'};
369         my $match = GetImportRecordMatches($biblio->{'import_record_id'}, 1);
370         my %cellrecord = (
371             import_record_id => $biblio->{'import_record_id'},
372             citation => $citation,
373             import  => 1,
374             status => $biblio->{'status'},
375             record_sequence => $biblio->{'record_sequence'},
376             overlay_status => $biblio->{'overlay_status'},
377             match_biblionumber => $#$match > -1 ? $match->[0]->{'biblionumber'} : 0,
378             match_citation     => $#$match > -1 ? $match->[0]->{'title'} || '' . ' ' . $match->[0]->{'author'} || '': '',
379             match_score => $#$match > -1 ? $match->[0]->{'score'} : 0,
380         );
381         my ( $marcblob, $encoding ) = GetImportRecordMarc( $biblio->{'import_record_id'} );
382         my $marcrecord = MARC::Record->new_from_usmarc($marcblob) || die "couldn't translate marc information";
383         my $infos = get_infos_syspref($marcrecord, ['price', 'quantity', 'budget_code', 'discount', 'sort1', 'sort2']);
384         my $price = $infos->{price};
385         my $quantity = $infos->{quantity};
386         my $budget_code = $infos->{budget_code};
387         my $discount = $infos->{discount};
388         my $sort1 = $infos->{sort1};
389         my $sort2 = $infos->{sort2};
390         my $budget_id;
391         if($budget_code) {
392             my $biblio_budget = GetBudgetByCode($budget_code);
393             if($biblio_budget) {
394                 $budget_id = $biblio_budget->{budget_id};
395             }
396         }
397         $cellrecord{price} = $price || '';
398         $cellrecord{quantity} = $quantity || '';
399         $cellrecord{budget_id} = $budget_id || '';
400         $cellrecord{discount} = $discount || '';
401         $cellrecord{sort1} = $sort1 || '';
402         $cellrecord{sort2} = $sort2 || '';
403
404         push @list, \%cellrecord;
405     }
406     my $num_records = $batch->{'num_records'};
407     my $overlay_action = GetImportBatchOverlayAction($import_batch_id);
408     my $nomatch_action = GetImportBatchNoMatchAction($import_batch_id);
409     my $item_action = GetImportBatchItemAction($import_batch_id);
410     $template->param(biblio_list => \@list,
411                         num_results => $num_records,
412                         import_batch_id => $import_batch_id,
413                         "overlay_action_${overlay_action}" => 1,
414                         overlay_action => $overlay_action,
415                         "nomatch_action_${nomatch_action}" => 1,
416                         nomatch_action => $nomatch_action,
417                         "item_action_${item_action}" => 1,
418                         item_action => $item_action
419                     );
420     batch_info($template, $batch);
421 }
422
423 sub batch_info {
424     my ($template, $batch) = @_;
425     $template->param(batch_info => 1,
426                                       file_name => $batch->{'file_name'},
427                                           comments => $batch->{'comments'},
428                                           import_status => $batch->{'import_status'},
429                                           upload_timestamp => $batch->{'upload_timestamp'},
430                                           num_records => $batch->{'num_records'},
431                                           num_items => $batch->{'num_items'});
432     if ($batch->{'num_records'} > 0) {
433         if ($batch->{'import_status'} eq 'staged' or $batch->{'import_status'} eq 'reverted') {
434             $template->param(can_commit => 1);
435         }
436         if ($batch->{'import_status'} eq 'imported') {
437             $template->param(can_revert => 1);
438         }
439     }
440     if (defined $batch->{'matcher_id'}) {
441         my $matcher = C4::Matcher->fetch($batch->{'matcher_id'});
442         if (defined $matcher) {
443             $template->param('current_matcher_id' => $batch->{'matcher_id'},
444                                               'current_matcher_code' => $matcher->code(),
445                                               'current_matcher_description' => $matcher->description());
446         }
447     }
448     add_matcher_list($batch->{'matcher_id'}, $template);
449 }
450
451 sub add_matcher_list {
452     my ($current_matcher_id, $template) = @_;
453     my @matchers = C4::Matcher::GetMatcherList();
454     if (defined $current_matcher_id) {
455         for (my $i = 0; $i <= $#matchers; $i++) {
456             if ($matchers[$i]->{'matcher_id'} == $current_matcher_id) {
457                 $matchers[$i]->{'selected'} = 1;
458             }
459         }
460     }
461     $template->param(available_matchers => \@matchers);
462 }
463
464 sub get_infos_syspref {
465     my ($record, $field_list) = @_;
466     my $syspref = C4::Context->preference('MarcFieldsToOrder');
467     $syspref = "$syspref\n\n"; # YAML is anal on ending \n. Surplus does not hurt
468     my $yaml = eval {
469         YAML::Load($syspref);
470     };
471     if ( $@ ) {
472         warn "Unable to parse MarcFieldsToOrder syspref : $@";
473         return ();
474     }
475     my $r;
476     for my $field_name ( @$field_list ) {
477         next unless exists $yaml->{$field_name};
478         my @fields = split /\|/, $yaml->{$field_name};
479         for my $field ( @fields ) {
480             my ( $f, $sf ) = split /\$/, $field;
481             next unless $f and $sf;
482             if ( my $v = $record->subfield( $f, $sf ) ) {
483                 $r->{$field_name} = $v;
484             }
485             last if $yaml->{$field};
486         }
487     }
488     return $r;
489 }