Bug 34786: after_biblio_action hooks - No find when action is delete
[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 they want 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
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
15 #
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23
24 use Modern::Perl;
25 use CGI qw ( -utf8 );
26 use YAML::XS;
27 use List::MoreUtils;
28 use Encode;
29
30 use C4::Context;
31 use C4::Auth qw( get_template_and_user );
32 use C4::Output qw( output_html_with_http_headers );
33 use C4::ImportBatch qw( SetImportBatchStatus GetImportBatch GetImportBatchRangeDesc GetNumberOfNonZ3950ImportBatches GetImportBatchOverlayAction GetImportBatchNoMatchAction GetImportBatchItemAction );
34 use C4::Matcher;
35 use C4::Search qw( FindDuplicate );
36 use C4::Biblio qw(
37     AddBiblio
38     GetMarcFromKohaField
39     GetMarcPrice
40     GetMarcQuantity
41     TransformHtmlToXml
42 );
43 use C4::Items qw( PrepareItemrecordDisplay AddItemFromMarc );
44 use C4::Budgets qw( GetBudget GetBudgets GetBudgetHierarchy CanUserUseBudget GetBudgetByCode );
45 use C4::Suggestions;    # GetSuggestion
46 use C4::Members;
47
48 use Koha::Number::Price;
49 use Koha::Libraries;
50 use Koha::Acquisition::Baskets;
51 use Koha::Acquisition::Currencies;
52 use Koha::Acquisition::Orders;
53 use Koha::Acquisition::Booksellers;
54 use Koha::ImportBatches;
55 use Koha::Import::Records;
56 use Koha::Patrons;
57
58 my $input = CGI->new;
59 my ($template, $loggedinuser, $cookie, $userflags) = get_template_and_user({
60     template_name => "acqui/addorderiso2709.tt",
61     query => $input,
62     type => "intranet",
63     flagsrequired   => { acquisition => 'order_manage' },
64 });
65
66 my $cgiparams = $input->Vars;
67 my $op = $cgiparams->{'op'} || '';
68 my $booksellerid  = $input->param('booksellerid');
69 my $allmatch = $input->param('allmatch');
70 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
71
72 $template->param(scriptname => "/cgi-bin/koha/acqui/addorderiso2709.pl",
73                 booksellerid => $booksellerid,
74                 booksellername => $bookseller->name,
75                 );
76
77 if ($cgiparams->{'import_batch_id'} && $op eq ""){
78     $op = "batch_details";
79 }
80
81 #Needed parameters:
82 if (! $cgiparams->{'basketno'}){
83     die "Basketnumber required to order from iso2709 file import";
84 }
85 my $basket = Koha::Acquisition::Baskets->find( $cgiparams->{basketno} );
86
87 #
88 # 1st step = choose the file to import into acquisition
89 #
90 if ($op eq ""){
91     $template->param("basketno" => $cgiparams->{'basketno'});
92 #display batches
93     import_batches_list($template);
94 #
95 # 2nd step = display the content of the chosen file
96 #
97 } elsif ($op eq "batch_details"){
98 #display lines inside the selected batch
99
100     $template->param("batch_details" => 1,
101                      "basketno"      => $cgiparams->{'basketno'},
102                      # get currencies (for change rates calcs if needed)
103                      currencies => Koha::Acquisition::Currencies->search,
104                      bookseller => $bookseller,
105                      "allmatch" => $allmatch,
106                      );
107     import_biblios_list($template, $cgiparams->{'import_batch_id'});
108     if ( $basket->effective_create_items eq 'ordering' && !$basket->is_standing ) {
109         # prepare empty item form
110         my $cell = PrepareItemrecordDisplay( '', '', undef, 'ACQ' );
111
112         #     warn "==> ".Data::Dumper::Dumper($cell);
113         unless ($cell) {
114             $cell = PrepareItemrecordDisplay( '', '', undef, '' );
115             $template->param( 'NoACQframework' => 1 );
116         }
117         my @itemloop;
118         push @itemloop, $cell;
119
120         $template->param( items => \@itemloop );
121     }
122 #
123 # 3rd step = import the records
124 #
125 } elsif ( $op eq 'import_records' ) {
126 #import selected lines
127     $template->param('basketno' => $cgiparams->{'basketno'});
128 # Budget_id is mandatory for adding an order, we just add a default, the user needs to modify this aftewards
129     my $budgets = GetBudgets();
130     if (scalar @$budgets == 0){
131         die "No budgets defined, can't continue";
132     }
133     my $budget_id = @$budgets[0]->{'budget_id'};
134 #get all records from a batch, and check their import status to see if they are checked.
135 #(default values: quantity 1, uncertainprice yes, first budget)
136
137     # retrieve the file you want to import
138     my $import_batch_id = $cgiparams->{'import_batch_id'};
139     my $import_batch = Koha::ImportBatches->find( $import_batch_id );
140     my $overlay_action = $import_batch->overlay_action;
141     my $import_records = Koha::Import::Records->search({
142         import_batch_id => $import_batch_id,
143     });
144     my $duplinbatch;
145     my $imported = 0;
146     my @import_record_id_selected = $input->multi_param("import_record_id");
147     my @quantities = $input->multi_param('quantity');
148     my @prices = $input->multi_param('price');
149     my @orderreplacementprices = $input->multi_param('replacementprice');
150     my @budgets_id = $input->multi_param('budget_id');
151     my @discount = $input->multi_param('discount');
152     my @sort1 = $input->multi_param('sort1');
153     my @sort2 = $input->multi_param('sort2');
154     my $matcher_id = $input->param('matcher_id');
155     my $active_currency = Koha::Acquisition::Currencies->get_active;
156     my $biblio_count = 0;
157     while( my $import_record = $import_records->next ){
158         $biblio_count++;
159         my $duplifound = 0;
160         # Check if this import_record_id was selected
161         next if not grep { $_ eq $import_record->import_record_id } @import_record_id_selected;
162         my $marcrecord = $import_record->get_marc_record || die "couldn't translate marc information";
163         my $matches = $import_record->get_import_record_matches({ chosen => 1 });
164         my $match = $matches->count ? $matches->next : undef;
165         my $biblionumber = $match ? $match->candidate_match_id : 0;
166         my $c_quantity = shift( @quantities ) || GetMarcQuantity($marcrecord, C4::Context->preference('marcflavour') ) || 1;
167         my $c_budget_id = shift( @budgets_id ) || $input->param('all_budget_id') || $budget_id;
168         my $c_discount = shift ( @discount);
169         my $c_sort1 = shift( @sort1 ) || $input->param('all_sort1') || '';
170         my $c_sort2 = shift( @sort2 ) || $input->param('all_sort2') || '';
171         my $c_replacement_price = shift( @orderreplacementprices );
172         my $c_price = shift( @prices ) || GetMarcPrice($marcrecord, C4::Context->preference('marcflavour'));
173
174         # Insert the biblio, or find it through matcher
175         if ( $biblionumber ) { # If matched during staging we can continue
176             $import_record->status('imported')->store;
177             if( $overlay_action eq 'replace' ){
178                 my $biblio = Koha::Biblios->find( $biblionumber );
179                 $import_record->replace({ biblio => $biblio });
180             }
181         } else { # Otherwise we check for duplicates, and skip if they exist
182             if ($matcher_id) {
183                 if ( $matcher_id eq '_TITLE_AUTHOR_' ) {
184                     $duplifound = 1 if FindDuplicate($marcrecord);
185                 }
186                 else {
187                     my $matcher = C4::Matcher->fetch($matcher_id);
188                     my @matches = $matcher->get_matches( $marcrecord, my $max_matches = 1 );
189                     $duplifound = 1 if @matches;
190                 }
191
192                 $duplinbatch = $import_batch_id and next if $duplifound;
193             }
194
195             # remove hyphens (-) from ISBN
196             # FIXME: This should probably be optional
197             my ( $isbnfield, $isbnsubfield ) = GetMarcFromKohaField( 'biblioitems.isbn' );
198             if ( $marcrecord->field($isbnfield) ) {
199                 foreach my $field ( $marcrecord->field($isbnfield) ) {
200                     foreach my $subfield ( $field->subfield($isbnsubfield) ) {
201                         my $newisbn = $field->subfield($isbnsubfield);
202                         $newisbn =~ s/-//g;
203                         $field->update( $isbnsubfield => $newisbn );
204                     }
205                 }
206             }
207
208             # add the biblio
209             ( $biblionumber, undef ) = AddBiblio( $marcrecord, $cgiparams->{'frameworkcode'} || '' );
210             $import_record->status('imported')->store;
211         }
212
213         $import_record->import_biblio->matched_biblionumber($biblionumber)->store;
214
215         # Add items from MarcItemFieldsToOrder
216         my @homebranches = $input->multi_param('homebranch_' . $import_record->import_record_id);
217         my $count = scalar @homebranches;
218         my @holdingbranches = $input->multi_param('holdingbranch_' . $import_record->import_record_id);
219         my @itypes = $input->multi_param('itype_' . $import_record->import_record_id);
220         my @nonpublic_notes = $input->multi_param('nonpublic_note_' . $import_record->import_record_id);
221         my @public_notes = $input->multi_param('public_note_' . $import_record->import_record_id);
222         my @locs = $input->multi_param('loc_' . $import_record->import_record_id);
223         my @ccodes = $input->multi_param('ccode_' . $import_record->import_record_id);
224         my @notforloans = $input->multi_param('notforloan_' . $import_record->import_record_id);
225         my @uris = $input->multi_param('uri_' . $import_record->import_record_id);
226         my @copynos = $input->multi_param('copyno_' . $import_record->import_record_id);
227         my @budget_ids =
228             $input->multi_param( 'budget_code_' . $import_record->import_record_id ); # bad field name used in template!
229         my @itemprices = $input->multi_param('itemprice_' . $import_record->import_record_id);
230         my @replacementprices = $input->multi_param('replacementprice_' . $import_record->import_record_id);
231         my @itemcallnumbers = $input->multi_param('itemcallnumber_' . $import_record->import_record_id);
232         my $itemcreation = 0;
233
234         my @itemnumbers;
235         for (my $i = 0; $i < $count; $i++) {
236             $itemcreation = 1;
237             my $item = Koha::Item->new(
238                 {
239                     biblionumber        => $biblionumber,
240                     homebranch          => $homebranches[$i],
241                     holdingbranch       => $holdingbranches[$i],
242                     itemnotes_nonpublic => $nonpublic_notes[$i],
243                     itemnotes           => $public_notes[$i],
244                     location            => $locs[$i],
245                     ccode               => $ccodes[$i],
246                     itype               => $itypes[$i],
247                     notforloan          => $notforloans[$i],
248                     uri                 => $uris[$i],
249                     copynumber          => $copynos[$i],
250                     price               => $itemprices[$i],
251                     replacementprice    => $replacementprices[$i],
252                     itemcallnumber      => $itemcallnumbers[$i],
253                 }
254             )->store;
255             push( @itemnumbers, $item->itemnumber );
256         }
257         if ($itemcreation == 1) {
258             # Group orderlines from MarcItemFieldsToOrder
259             my $budget_hash;
260             for (my $i = 0; $i < $count; $i++) {
261                 $budget_ids[$i] = $budget_id if !$budget_ids[$i];   # Use default budget if no budget selected in the UI
262                 $budget_hash->{ $budget_ids[$i] }->{quantity} += 1;
263                 $budget_hash->{ $budget_ids[$i] }->{price} = $itemprices[$i];
264                 $budget_hash->{ $budget_ids[$i] }->{replacementprice} =
265                   $replacementprices[$i];
266                 $budget_hash->{ $budget_ids[$i] }->{itemnumbers} //= [];
267                 push @{ $budget_hash->{ $budget_ids[$i] }->{itemnumbers} },
268                   $itemnumbers[$i];
269             }
270
271             # Create orderlines from MarcItemFieldsToOrder
272             while(my ($budget_id, $infos) = each %$budget_hash) {
273                 if ($budget_id) {
274                     my %orderinfo = (
275                         biblionumber       => $biblionumber,
276                         basketno           => $cgiparams->{'basketno'},
277                         quantity           => $infos->{quantity},
278                         budget_id          => $budget_id,
279                         currency           => $cgiparams->{'all_currency'},
280                     );
281
282                     my $price = $infos->{price};
283                     if ($price){
284                         # in France, the cents separator is the , but sometimes, ppl use a .
285                         # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
286                         $price =~ s/\./,/ if C4::Context->preference("CurrencyFormat") eq "FR";
287                         $price = Koha::Number::Price->new($price)->unformat;
288                         $orderinfo{tax_rate_on_ordering} = $bookseller->tax_rate;
289                         $orderinfo{tax_rate_on_receiving} = $bookseller->tax_rate;
290                         my $order_discount = $c_discount ? $c_discount : $bookseller->discount;
291                         $orderinfo{discount} = $order_discount;
292                         $orderinfo{rrp} = $price;
293                         $orderinfo{ecost} = $order_discount ? $price * ( 1 - $order_discount / 100 ) : $price;
294                         $orderinfo{listprice} = $orderinfo{rrp} / $active_currency->rate;
295                         $orderinfo{unitprice} = $orderinfo{ecost};
296                     } else {
297                         $orderinfo{listprice} = 0;
298                     }
299                     $orderinfo{replacementprice} = $infos->{replacementprice} || 0;
300
301                     # remove uncertainprice flag if we have found a price in the MARC record
302                     $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
303
304                     my $order = Koha::Acquisition::Order->new( \%orderinfo );
305                     $order->populate_with_prices_for_ordering();
306                     $order->populate_with_prices_for_receiving();
307                     $order->store;
308                     $order->add_item( $_ ) for @{ $budget_hash->{$budget_id}->{itemnumbers} };
309                 }
310             }
311         } else {
312             # 3rd add order
313             my $patron = Koha::Patrons->find( $loggedinuser );
314             # get quantity in the MARC record (1 if none)
315             my $quantity = GetMarcQuantity($marcrecord, C4::Context->preference('marcflavour')) || 1;
316             my %orderinfo = (
317                 biblionumber       => $biblionumber,
318                 basketno           => $cgiparams->{'basketno'},
319                 quantity           => $c_quantity,
320                 branchcode         => $patron->branchcode,
321                 budget_id          => $c_budget_id,
322                 uncertainprice     => 1,
323                 sort1              => $c_sort1,
324                 sort2              => $c_sort2,
325                 order_internalnote => $cgiparams->{'all_order_internalnote'},
326                 order_vendornote   => $cgiparams->{'all_order_vendornote'},
327                 currency           => $cgiparams->{'all_currency'},
328                 replacementprice   => $c_replacement_price,
329             );
330             # get the price if there is one.
331             if ($c_price){
332                 # in France, the cents separator is the , but sometimes, ppl use a .
333                 # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
334                 $c_price =~ s/\./,/ if C4::Context->preference("CurrencyFormat") eq "FR";
335                 $c_price = Koha::Number::Price->new($c_price)->unformat;
336                 $orderinfo{tax_rate_on_ordering} = $bookseller->tax_rate;
337                 $orderinfo{tax_rate_on_receiving} = $bookseller->tax_rate;
338                 my $order_discount = $c_discount ? $c_discount : $bookseller->discount;
339                 $orderinfo{discount} = $order_discount;
340                 $orderinfo{rrp}   = $c_price;
341                 $orderinfo{ecost} = $order_discount ? $c_price * ( 1 - $order_discount / 100 ) : $c_price;
342                 $orderinfo{listprice} = $orderinfo{rrp} / $active_currency->rate;
343                 $orderinfo{unitprice} = $orderinfo{ecost};
344             } else {
345                 $orderinfo{listprice} = 0;
346             }
347
348             # remove uncertainprice flag if we have found a price in the MARC record
349             $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
350
351             my $order = Koha::Acquisition::Order->new( \%orderinfo );
352             $order->populate_with_prices_for_ordering();
353             $order->populate_with_prices_for_receiving();
354             $order->store;
355
356             # 4th, add items if applicable
357             # parse the item sent by the form, and create an item just for the import_record_id we are dealing with
358             # this is not optimised, but it's working !
359             if ( $basket->effective_create_items eq 'ordering' && !$basket->is_standing ) {
360                 my @tags         = $input->multi_param('tag');
361                 my @subfields    = $input->multi_param('subfield');
362                 my @field_values = $input->multi_param('field_value');
363                 my @serials      = $input->multi_param('serial');
364                 my $xml = TransformHtmlToXml( \@tags, \@subfields, \@field_values );
365                 my $record = MARC::Record::new_from_xml( $xml, 'UTF-8' );
366                 for (my $qtyloop=1;$qtyloop <= $c_quantity;$qtyloop++) {
367                     my ( $biblionumber, undef, $itemnumber ) = AddItemFromMarc( $record, $biblionumber );
368                     $order->add_item( $itemnumber );
369                 }
370             }
371         }
372         $imported++;
373     }
374
375     # If all bibliographic records from the batch have been imported we modifying the status of the batch accordingly
376     SetImportBatchStatus( $import_batch_id, 'imported' )
377         if Koha::Import::Records->search({import_batch_id => $import_batch_id, status => 'imported' })->count
378            == Koha::Import::Records->search({import_batch_id => $import_batch_id})->count;
379
380     # go to basket page
381     if ( $imported ) {
382         print $input->redirect("/cgi-bin/koha/acqui/basket.pl?basketno=".$cgiparams->{'basketno'}."&amp;duplinbatch=$duplinbatch");
383     } else {
384         print $input->redirect("/cgi-bin/koha/acqui/addorderiso2709.pl?import_batch_id=$import_batch_id&amp;basketno=".$cgiparams->{'basketno'}."&amp;booksellerid=$booksellerid&amp;allmatch=1");
385     }
386     exit;
387 }
388
389 my $budgets = GetBudgets();
390 my $budget_id = @$budgets[0]->{'budget_id'};
391 # build bookfund list
392 my $patron = Koha::Patrons->find( $loggedinuser )->unblessed;
393 my $budget = GetBudget($budget_id);
394
395 # build budget list
396 my $budget_loop = [];
397 my $budgets_hierarchy = GetBudgetHierarchy;
398 foreach my $r ( @{$budgets_hierarchy} ) {
399     next unless (CanUserUseBudget($patron, $r, $userflags));
400     push @{$budget_loop},
401       { b_id  => $r->{budget_id},
402         b_txt => $r->{budget_name},
403         b_code => $r->{budget_code},
404         b_sort1_authcat => $r->{'sort1_authcat'},
405         b_sort2_authcat => $r->{'sort2_authcat'},
406         b_active => $r->{budget_period_active},
407         b_sel => ( $r->{budget_id} == $budget_id ) ? 1 : 0,
408       };
409 }
410
411 @{$budget_loop} =
412   sort { uc( $a->{b_txt}) cmp uc( $b->{b_txt}) } @{$budget_loop};
413
414 $template->param( budget_loop    => $budget_loop,);
415
416 output_html_with_http_headers $input, $cookie, $template->output;
417
418
419 sub import_batches_list {
420     my ($template) = @_;
421     my $batches = GetImportBatchRangeDesc();
422
423     my @list = ();
424     foreach my $batch (@$batches) {
425         if ( $batch->{'import_status'} =~ /^staged$|^reverted$/ && $batch->{'record_type'} eq 'biblio') {
426             # check if there is at least 1 line still staged
427             my $import_records_count = Koha::Import::Records->search({
428                 import_batch_id => $batch->{'import_batch_id'},
429                 status          => $batch->{import_status}
430             })->count;
431             if ( $import_records_count ) {
432                 push @list, {
433                         import_batch_id => $batch->{'import_batch_id'},
434                         num_records => $batch->{'num_records'},
435                         num_items => $batch->{'num_items'},
436                         staged_date => $batch->{'upload_timestamp'},
437                         import_status => $batch->{'import_status'},
438                         file_name => $batch->{'file_name'},
439                         comments => $batch->{'comments'},
440                 };
441             } else {
442                 # if there are no more line to includes, set the status to imported
443                 # FIXME This should be removed in the future.
444                 SetImportBatchStatus( $batch->{'import_batch_id'}, 'imported' );
445             }
446         }
447     }
448     $template->param(batch_list => \@list); 
449     my $num_batches = GetNumberOfNonZ3950ImportBatches();
450     $template->param(num_results => $num_batches);
451 }
452
453 sub import_biblios_list {
454     my ($template, $import_batch_id) = @_;
455     my $batch = GetImportBatch($import_batch_id,'staged');
456     return () unless $batch and $batch->{import_status} =~ /^staged$|^reverted$/;
457     my $import_records = Koha::Import::Records->search({
458         import_batch_id => $import_batch_id,
459         status => $batch->{import_status}
460     });
461     my @list = ();
462     my $item_error = 0;
463
464     my $ccodes = { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.ccode' } ) };
465     my $locations = { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' } ) };
466     my $notforloans = { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.notforloan' } ) };
467     # location list
468     my @locations;
469     foreach (sort keys %$locations) {
470         push @locations, { code => $_, description => "$_ - " . $locations->{$_} };
471     }
472     my @ccodes;
473     foreach (sort {$ccodes->{$a} cmp $ccodes->{$b}} keys %$ccodes) {
474         push @ccodes, { code => $_, description => $ccodes->{$_} };
475     }
476     my @notforloans;
477     foreach (sort {$notforloans->{$a} cmp $notforloans->{$b}} keys %$notforloans) {
478         push @notforloans, { code => $_, description => $notforloans->{$_} };
479     }
480
481     my $biblio_count = 0;
482     while ( my $import_record = $import_records->next ) {
483         my $item_id = 1;
484         $biblio_count++;
485         my $matches = $import_record->get_import_record_matches({ chosen => 1 });
486         my $match = $matches->count ? $matches->next : undef;
487         my $match_biblio = $match ? Koha::Biblios->find({ biblionumber => $match->candidate_match_id }) : undef;
488         my %cellrecord = (
489             import_record_id => $import_record->import_record_id,
490             import_biblio => $import_record->import_biblio,
491             import  => 1,
492             status => $import_record->status,
493             record_sequence => $import_record->record_sequence,
494             overlay_status => $import_record->overlay_status,
495             match_biblionumber => $match ? $match->candidate_match_id : 0,
496             match_citation     => $match_biblio ? ($match_biblio->title || '') . ' ' .( $match_biblio->author || ''): '',
497             match_score => $match ? $match->score : 0,
498         );
499         my $marcrecord = $import_record->get_marc_record || die "couldn't translate marc information";
500
501         my $infos = get_infos_syspref('MarcFieldsToOrder', $marcrecord, ['price', 'quantity', 'budget_code', 'discount', 'sort1', 'sort2','replacementprice']);
502         my $price = $infos->{price};
503         my $replacementprice = $infos->{replacementprice};
504         my $quantity = $infos->{quantity};
505         my $budget_code = $infos->{budget_code};
506         my $discount = $infos->{discount};
507         my $sort1 = $infos->{sort1};
508         my $sort2 = $infos->{sort2};
509         my $budget_id;
510         if($budget_code) {
511             my $biblio_budget = GetBudgetByCode($budget_code);
512             if($biblio_budget) {
513                 $budget_id = $biblio_budget->{budget_id};
514             }
515         }
516
517         # Items
518         my @itemlist = ();
519         my $all_items_quantity = 0;
520         my $alliteminfos = get_infos_syspref_on_item('MarcItemFieldsToOrder', $marcrecord, ['homebranch', 'holdingbranch', 'itype', 'nonpublic_note', 'public_note', 'loc', 'ccode', 'notforloan', 'uri', 'copyno', 'price', 'replacementprice', 'itemcallnumber', 'quantity', 'budget_code']);
521         if ($alliteminfos != -1) {
522             foreach my $iteminfos (@$alliteminfos) {
523                 my $item_homebranch = $iteminfos->{homebranch};
524                 my $item_holdingbranch = $iteminfos->{holdingbranch};
525                 my $item_itype = $iteminfos->{itype};
526                 my $item_nonpublic_note = $iteminfos->{nonpublic_note};
527                 my $item_public_note = $iteminfos->{public_note};
528                 my $item_loc = $iteminfos->{loc};
529                 my $item_ccode = $iteminfos->{ccode};
530                 my $item_notforloan = $iteminfos->{notforloan};
531                 my $item_uri = $iteminfos->{uri};
532                 my $item_copyno = $iteminfos->{copyno};
533                 my $item_quantity = $iteminfos->{quantity} || 1;
534                 my $item_budget_code = $iteminfos->{budget_code};
535                 my $item_budget_id;
536                 if ( $iteminfos->{budget_code} ) {
537                     my $item_budget = GetBudgetByCode( $iteminfos->{budget_code} );
538                     if ( $item_budget ) {
539                         $item_budget_id = $item_budget->{budget_id};
540                     }
541                 }
542                 my $item_price = $iteminfos->{price};
543                 my $item_replacement_price = $iteminfos->{replacementprice};
544                 my $item_callnumber = $iteminfos->{itemcallnumber};
545
546                 for (my $i = 0; $i < $item_quantity; $i++) {
547
548                     my %itemrecord = (
549                         'item_id' => $item_id++,
550                         'biblio_count' => $biblio_count,
551                         'homebranch' => $item_homebranch,
552                         'holdingbranch' => $item_holdingbranch,
553                         'itype' => $item_itype,
554                         'nonpublic_note' => $item_nonpublic_note,
555                         'public_note' => $item_public_note,
556                         'loc' => $item_loc,
557                         'ccode' => $item_ccode,
558                         'notforloan' => $item_notforloan,
559                         'uri' => $item_uri,
560                         'copyno' => $item_copyno,
561                         'quantity' => $item_quantity,
562                         'budget_id' => $item_budget_id || $budget_id,
563                         'itemprice' => $item_price || $price,
564                         'replacementprice' => $item_replacement_price || $replacementprice,
565                         'itemcallnumber' => $item_callnumber,
566                     );
567                     $all_items_quantity++;
568                     push @itemlist, \%itemrecord;
569
570                 }
571             }
572
573             $cellrecord{'iteminfos'} = \@itemlist;
574         } else {
575             $cellrecord{'item_error'} = 1;
576         }
577         push @list, \%cellrecord;
578
579         if ($alliteminfos == -1 || scalar(@$alliteminfos) == 0) {
580             $cellrecord{price} = $price || '';
581             $cellrecord{replacementprice} = $replacementprice || '';
582             $cellrecord{quantity} = $quantity || '';
583             $cellrecord{budget_id} = $budget_id || '';
584             $cellrecord{discount} = $discount || '';
585             $cellrecord{sort1} = $sort1 || '';
586             $cellrecord{sort2} = $sort2 || '';
587         } else {
588             $cellrecord{quantity} = $all_items_quantity;
589         }
590
591     }
592     my $num_records = $batch->{'num_records'};
593     my $overlay_action = GetImportBatchOverlayAction($import_batch_id);
594     my $nomatch_action = GetImportBatchNoMatchAction($import_batch_id);
595     my $item_action = GetImportBatchItemAction($import_batch_id);
596     $template->param(import_biblio_list => \@list,
597                         num_results => $num_records,
598                         import_batch_id => $import_batch_id,
599                         "overlay_action_${overlay_action}" => 1,
600                         overlay_action => $overlay_action,
601                         "nomatch_action_${nomatch_action}" => 1,
602                         nomatch_action => $nomatch_action,
603                         "item_action_${item_action}" => 1,
604                         item_action => $item_action,
605                         item_error => $item_error,
606                         libraries => Koha::Libraries->search,
607                         locationloop => \@locations,
608                         itemtypes => Koha::ItemTypes->search,
609                         ccodeloop => \@ccodes,
610                         notforloanloop => \@notforloans,
611                     );
612     batch_info($template, $batch);
613 }
614
615 sub batch_info {
616     my ($template, $batch) = @_;
617     $template->param(batch_info => 1,
618                                       file_name => $batch->{'file_name'},
619                                           comments => $batch->{'comments'},
620                                           import_status => $batch->{'import_status'},
621                                           upload_timestamp => $batch->{'upload_timestamp'},
622                                           num_records => $batch->{'num_records'},
623                                           num_items => $batch->{'num_items'});
624     if ($batch->{'num_records'} > 0) {
625         if ($batch->{'import_status'} eq 'staged' or $batch->{'import_status'} eq 'reverted') {
626             $template->param(can_commit => 1);
627         }
628         if ($batch->{'import_status'} eq 'imported') {
629             $template->param(can_revert => 1);
630         }
631     }
632     if (defined $batch->{'matcher_id'}) {
633         my $matcher = C4::Matcher->fetch($batch->{'matcher_id'});
634         if (defined $matcher) {
635             $template->param('current_matcher_id' => $batch->{'matcher_id'},
636                                               'current_matcher_code' => $matcher->code(),
637                                               'current_matcher_description' => $matcher->description());
638         }
639     }
640     add_matcher_list($batch->{'matcher_id'}, $template);
641 }
642
643 sub add_matcher_list {
644     my ($current_matcher_id, $template) = @_;
645     my @matchers = C4::Matcher::GetMatcherList();
646     if (defined $current_matcher_id) {
647         for (my $i = 0; $i <= $#matchers; $i++) {
648             if ($matchers[$i]->{'matcher_id'} == $current_matcher_id) {
649                 $matchers[$i]->{'selected'} = 1;
650             }
651         }
652     }
653     $template->param(available_matchers => \@matchers);
654 }
655
656 sub get_infos_syspref {
657     my ($syspref_name, $record, $field_list) = @_;
658     my $syspref = C4::Context->preference($syspref_name);
659     $syspref = "$syspref\n\n"; # YAML is anal on ending \n. Surplus does not hurt
660     my $yaml = eval {
661         YAML::XS::Load(Encode::encode_utf8($syspref));
662     };
663     if ( $@ ) {
664         warn "Unable to parse $syspref syspref : $@";
665         return ();
666     }
667     my $r;
668     for my $field_name ( @$field_list ) {
669         next unless exists $yaml->{$field_name};
670         my @fields = split /\|/, $yaml->{$field_name};
671         for my $field ( @fields ) {
672             my ( $f, $sf ) = split /\$/, $field;
673             next unless $f and $sf;
674             if ( my $v = $record->subfield( $f, $sf ) ) {
675                 $r->{$field_name} = $v;
676             }
677             last if $yaml->{$field};
678         }
679     }
680     return $r;
681 }
682
683 sub equal_number_of_fields {
684     my ($tags_list, $record) = @_;
685     my $tag_fields_count;
686     for my $tag (@$tags_list) {
687         my @fields = $record->field($tag);
688         $tag_fields_count->{$tag} = scalar @fields;
689     }
690
691     my $tags_count;
692     foreach my $key ( keys %$tag_fields_count ) {
693         if ( $tag_fields_count->{$key} > 0 ) { # Having 0 of a field is ok
694             $tags_count //= $tag_fields_count->{$key}; # Start with the count from the first occurrence
695             return -1 if $tag_fields_count->{$key} != $tags_count; # All counts of various fields should be equal if they exist
696         }
697     }
698
699     return $tags_count;
700 }
701
702 sub get_infos_syspref_on_item {
703     my ($syspref_name, $record, $field_list) = @_;
704     my $syspref = C4::Context->preference($syspref_name);
705     $syspref = "$syspref\n\n"; # YAML is anal on ending \n. Surplus does not hurt
706     my $yaml = eval {
707         YAML::XS::Load(Encode::encode_utf8($syspref));
708     };
709     if ( $@ ) {
710         warn "Unable to parse $syspref syspref : $@";
711         return ();
712     }
713     my @result;
714     my @tags_list;
715
716     # Check tags in syspref definition
717     for my $field_name ( @$field_list ) {
718         next unless exists $yaml->{$field_name};
719         my @fields = split /\|/, $yaml->{$field_name};
720         for my $field ( @fields ) {
721             my ( $f, $sf ) = split /\$/, $field;
722             next unless $f and $sf;
723             push @tags_list, $f;
724         }
725     }
726     @tags_list = List::MoreUtils::uniq(@tags_list);
727
728     my $tags_count = equal_number_of_fields(\@tags_list, $record);
729     # Return if the number of these fields in the record is not the same.
730     return -1 if $tags_count == -1;
731
732     # Gather the fields
733     my $fields_hash;
734     foreach my $tag (@tags_list) {
735         my @tmp_fields;
736         foreach my $field ($record->field($tag)) {
737             push @tmp_fields, $field;
738         }
739         $fields_hash->{$tag} = \@tmp_fields;
740     }
741
742     for (my $i = 0; $i < $tags_count; $i++) {
743         my $r;
744         for my $field_name ( @$field_list ) {
745             next unless exists $yaml->{$field_name};
746             my @fields = split /\|/, $yaml->{$field_name};
747             for my $field ( @fields ) {
748                 my ( $f, $sf ) = split /\$/, $field;
749                 next unless $f and $sf;
750                 my $v = $fields_hash->{$f}[$i] ? $fields_hash->{$f}[$i]->subfield( $sf ) : undef;
751                 $r->{$field_name} = $v if (defined $v);
752                 last if $yaml->{$field};
753             }
754         }
755         push @result, $r;
756     }
757     return \@result;
758 }