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