Bug 25898: Prohibit indirect object notation
[koha.git] / acqui / addorderiso2709.pl
blobaf2af987b245e671cb26b69d13a1f61af85063ee
1 #!/usr/bin/perl
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
7 # Copyright 2008 - 2011 BibLibre SARL
9 # This file is part of Koha.
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.
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.
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>.
24 use Modern::Perl;
25 use CGI qw ( -utf8 );
26 use Carp;
27 use YAML qw/Load/;
28 use List::MoreUtils qw/uniq/;
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;
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;
53 my $input = CGI->new;
54 my ($template, $loggedinuser, $cookie, $userflags) = get_template_and_user({
55 template_name => "acqui/addorderiso2709.tt",
56 query => $input,
57 type => "intranet",
58 flagsrequired => { acquisition => 'order_manage' },
59 debug => 1,
60 });
62 my $cgiparams = $input->Vars;
63 my $op = $cgiparams->{'op'} || '';
64 my $booksellerid = $input->param('booksellerid');
65 my $allmatch = $input->param('allmatch');
66 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
68 $template->param(scriptname => "/cgi-bin/koha/acqui/addorderiso2709.pl",
69 booksellerid => $booksellerid,
70 booksellername => $bookseller->name,
73 if ($cgiparams->{'import_batch_id'} && $op eq ""){
74 $op = "batch_details";
77 #Needed parameters:
78 if (! $cgiparams->{'basketno'}){
79 die "Basketnumber required to order from iso2709 file import";
81 my $basket = Koha::Acquisition::Baskets->find( $cgiparams->{basketno} );
84 # 1st step = choose the file to import into acquisition
86 if ($op eq ""){
87 $template->param("basketno" => $cgiparams->{'basketno'});
88 #display batches
89 import_batches_list($template);
91 # 2nd step = display the content of the chosen file
93 } elsif ($op eq "batch_details"){
94 #display lines inside the selected batch
95 # get currencies (for change rates calcs if needed)
96 my @currencies = Koha::Acquisition::Currencies->search;
98 $template->param("batch_details" => 1,
99 "basketno" => $cgiparams->{'basketno'},
100 currencies => \@currencies,
101 bookseller => $bookseller,
102 "allmatch" => $allmatch,
104 import_biblios_list($template, $cgiparams->{'import_batch_id'});
105 if ( $basket->effective_create_items eq 'ordering' && !$basket->is_standing ) {
106 # prepare empty item form
107 my $cell = PrepareItemrecordDisplay( '', '', '', 'ACQ' );
109 # warn "==> ".Data::Dumper::Dumper($cell);
110 unless ($cell) {
111 $cell = PrepareItemrecordDisplay( '', '', '', '' );
112 $template->param( 'NoACQframework' => 1 );
114 my @itemloop;
115 push @itemloop, $cell;
117 $template->param( items => \@itemloop );
120 # 3rd step = import the records
122 } elsif ( $op eq 'import_records' ) {
123 #import selected lines
124 $template->param('basketno' => $cgiparams->{'basketno'});
125 # Budget_id is mandatory for adding an order, we just add a default, the user needs to modify this aftewards
126 my $budgets = GetBudgets();
127 if (scalar @$budgets == 0){
128 die "No budgets defined, can't continue";
130 my $budget_id = @$budgets[0]->{'budget_id'};
131 #get all records from a batch, and check their import status to see if they are checked.
132 #(default values: quantity 1, uncertainprice yes, first budget)
134 # retrieve the file you want to import
135 my $import_batch_id = $cgiparams->{'import_batch_id'};
136 my $biblios = GetImportRecordsRange($import_batch_id);
137 my $duplinbatch;
138 my $imported = 0;
139 my @import_record_id_selected = $input->multi_param("import_record_id");
140 my @quantities = $input->multi_param('quantity');
141 my @prices = $input->multi_param('price');
142 my @orderreplacementprices = $input->multi_param('replacementprice');
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') || '';
166 # 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);
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;
178 $duplinbatch = $import_batch_id and next if $duplifound;
181 # add the biblio
182 my $bibitemnum;
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 );
195 ( $biblionumber, $bibitemnum ) = AddBiblio( $marcrecord, $cgiparams->{'frameworkcode'} || '' );
196 SetImportRecordStatus( $biblio->{'import_record_id'}, 'imported' );
197 } else {
198 SetImportRecordStatus( $biblio->{'import_record_id'}, 'imported' );
201 # Add items from MarcItemFieldsToOrder
202 my @homebranches = $input->multi_param('homebranch_' . $biblio_count);
203 my $count = scalar @homebranches;
204 my @holdingbranches = $input->multi_param('holdingbranch_' . $biblio_count);
205 my @itypes = $input->multi_param('itype_' . $biblio_count);
206 my @nonpublic_notes = $input->multi_param('nonpublic_note_' . $biblio_count);
207 my @public_notes = $input->multi_param('public_note_' . $biblio_count);
208 my @locs = $input->multi_param('loc_' . $biblio_count);
209 my @ccodes = $input->multi_param('ccode_' . $biblio_count);
210 my @notforloans = $input->multi_param('notforloan_' . $biblio_count);
211 my @uris = $input->multi_param('uri_' . $biblio_count);
212 my @copynos = $input->multi_param('copyno_' . $biblio_count);
213 my @budget_codes = $input->multi_param('budget_code_' . $biblio_count);
214 my @itemprices = $input->multi_param('itemprice_' . $biblio_count);
215 my @replacementprices = $input->multi_param('replacementprice_' . $biblio_count);
216 my @itemcallnumbers = $input->multi_param('itemcallnumber_' . $biblio_count);
217 my $itemcreation = 0;
219 my @itemnumbers;
220 for (my $i = 0; $i < $count; $i++) {
221 $itemcreation = 1;
222 my $item = Koha::Item->new(
224 biblionumber => $biblionumber,
225 homebranch => $homebranches[$i],
226 holdingbranch => $holdingbranches[$i],
227 itemnotes_nonpublic => $nonpublic_notes[$i],
228 itemnotes => $public_notes[$i],
229 location => $locs[$i],
230 ccode => $ccodes[$i],
231 itype => $itypes[$i],
232 notforloan => $notforloans[$i],
233 uri => $uris[$i],
234 copynumber => $copynos[$i],
235 price => $itemprices[$i],
236 replacementprice => $replacementprices[$i],
237 itemcallnumber => $itemcallnumbers[$i],
239 )->store;
240 push( @itemnumbers, $item->itemnumber );
242 if ($itemcreation == 1) {
243 # Group orderlines from MarcItemFieldsToOrder
244 my $budget_hash;
245 for (my $i = 0; $i < $count; $i++) {
246 $budget_hash->{$budget_codes[$i]}->{quantity} += 1;
247 $budget_hash->{$budget_codes[$i]}->{price} = $itemprices[$i];
248 $budget_hash->{$budget_codes[$i]}->{replacementprice} = $replacementprices[$i];
249 $budget_hash->{$budget_codes[$i]}->{itemnumbers} //= [];
250 push @{ $budget_hash->{$budget_codes[$i]}->{itemnumbers} }, $itemnumbers[$i];
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'},
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 ( $c_discount ) {
274 $orderinfo{ecost} = $price;
275 $orderinfo{rrp} = $orderinfo{ecost} / ( 1 - $c );
276 } else {
277 $orderinfo{ecost} = $price * ( 1 - $c );
278 $orderinfo{rrp} = $price;
280 $orderinfo{listprice} = $orderinfo{rrp} / $active_currency->rate;
281 $orderinfo{unitprice} = $orderinfo{ecost};
282 $orderinfo{total} = $orderinfo{ecost} * $infos->{quantity};
283 } else {
284 $orderinfo{listprice} = 0;
286 $orderinfo{replacementprice} = $infos->{replacementprice} || 0;
288 # remove uncertainprice flag if we have found a price in the MARC record
289 $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
291 %orderinfo = %{
292 C4::Acquisition::populate_order_with_prices(
294 order => \%orderinfo,
295 booksellerid => $booksellerid,
296 ordering => 1,
297 receiving => 1,
302 my $order = Koha::Acquisition::Order->new( \%orderinfo )->store;
303 $order->add_item( $_ ) for @{ $budget_hash->{$budget_id}->{itemnumbers} };
306 } else {
307 # 3rd add order
308 my $patron = Koha::Patrons->find( $loggedinuser );
309 # get quantity in the MARC record (1 if none)
310 my $quantity = GetMarcQuantity($marcrecord, C4::Context->preference('marcflavour')) || 1;
311 my %orderinfo = (
312 biblionumber => $biblionumber,
313 basketno => $cgiparams->{'basketno'},
314 quantity => $c_quantity,
315 branchcode => $patron->branchcode,
316 budget_id => $c_budget_id,
317 uncertainprice => 1,
318 sort1 => $c_sort1,
319 sort2 => $c_sort2,
320 order_internalnote => $cgiparams->{'all_order_internalnote'},
321 order_vendornote => $cgiparams->{'all_order_vendornote'},
322 currency => $cgiparams->{'all_currency'},
323 replacementprice => shift( @orderreplacementprices ),
325 # get the price if there is one.
326 my $price= shift( @prices ) || GetMarcPrice($marcrecord, C4::Context->preference('marcflavour'));
327 if ($price){
328 # in France, the cents separator is the , but sometimes, ppl use a .
329 # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
330 $price =~ s/\./,/ if C4::Context->preference("CurrencyFormat") eq "FR";
331 $price = Koha::Number::Price->new($price)->unformat;
332 $orderinfo{tax_rate} = $bookseller->tax_rate;
333 my $c = $c_discount ? $c_discount : $bookseller->discount / 100;
334 $orderinfo{discount} = $c;
335 if ( $c_discount ) {
336 $orderinfo{ecost} = $price;
337 $orderinfo{rrp} = $orderinfo{ecost} / ( 1 - $c );
338 } else {
339 $orderinfo{ecost} = $price * ( 1 - $c );
340 $orderinfo{rrp} = $price;
342 $orderinfo{listprice} = $orderinfo{rrp} / $active_currency->rate;
343 $orderinfo{unitprice} = $orderinfo{ecost};
344 $orderinfo{total} = $orderinfo{ecost} * $c_quantity;
345 } else {
346 $orderinfo{listprice} = 0;
349 # remove uncertainprice flag if we have found a price in the MARC record
350 $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
352 %orderinfo = %{
353 C4::Acquisition::populate_order_with_prices(
355 order => \%orderinfo,
356 booksellerid => $booksellerid,
357 ordering => 1,
358 receiving => 1,
363 my $order = Koha::Acquisition::Order->new( \%orderinfo )->store;
365 # 4th, add items if applicable
366 # parse the item sent by the form, and create an item just for the import_record_id we are dealing with
367 # this is not optimised, but it's working !
368 if ( $basket->effective_create_items eq 'ordering' && !$basket->is_standing ) {
369 my @tags = $input->multi_param('tag');
370 my @subfields = $input->multi_param('subfield');
371 my @field_values = $input->multi_param('field_value');
372 my @serials = $input->multi_param('serial');
373 my @ind_tag = $input->multi_param('ind_tag');
374 my @indicator = $input->multi_param('indicator');
375 my $item;
376 push @{ $item->{tags} }, $tags[0];
377 push @{ $item->{subfields} }, $subfields[0];
378 push @{ $item->{field_values} }, $field_values[0];
379 push @{ $item->{ind_tag} }, $ind_tag[0];
380 push @{ $item->{indicator} }, $indicator[0];
381 my $xml = TransformHtmlToXml( \@tags, \@subfields, \@field_values, \@indicator, \@ind_tag );
382 my $record = MARC::Record::new_from_xml( $xml, 'UTF-8' );
383 for (my $qtyloop=1;$qtyloop <= $c_quantity;$qtyloop++) {
384 my ( $biblionumber, $bibitemnum, $itemnumber ) = AddItemFromMarc( $record, $biblionumber );
385 $order->add_item( $itemnumber );
387 } else {
388 SetImportRecordStatus( $biblio->{'import_record_id'}, 'imported' );
391 $imported++;
393 # go to basket page
394 if ( $imported ) {
395 print $input->redirect("/cgi-bin/koha/acqui/basket.pl?basketno=".$cgiparams->{'basketno'}."&amp;duplinbatch=$duplinbatch");
396 } else {
397 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");
399 exit;
402 my $budgets = GetBudgets();
403 my $budget_id = @$budgets[0]->{'budget_id'};
404 # build bookfund list
405 my $patron = Koha::Patrons->find( $loggedinuser )->unblessed;
406 my $budget = GetBudget($budget_id);
408 # build budget list
409 my $budget_loop = [];
410 my $budgets_hierarchy = GetBudgetHierarchy;
411 foreach my $r ( @{$budgets_hierarchy} ) {
412 next unless (CanUserUseBudget($patron, $r, $userflags));
413 push @{$budget_loop},
414 { b_id => $r->{budget_id},
415 b_txt => $r->{budget_name},
416 b_code => $r->{budget_code},
417 b_sort1_authcat => $r->{'sort1_authcat'},
418 b_sort2_authcat => $r->{'sort2_authcat'},
419 b_active => $r->{budget_period_active},
420 b_sel => ( $r->{budget_id} == $budget_id ) ? 1 : 0,
424 @{$budget_loop} =
425 sort { uc( $a->{b_txt}) cmp uc( $b->{b_txt}) } @{$budget_loop};
427 $template->param( budget_loop => $budget_loop,);
429 output_html_with_http_headers $input, $cookie, $template->output;
432 sub import_batches_list {
433 my ($template) = @_;
434 my $batches = GetImportBatchRangeDesc();
436 my @list = ();
437 foreach my $batch (@$batches) {
438 if ( $batch->{'import_status'} =~ /^staged$|^reverted$/ && $batch->{'record_type'} eq 'biblio') {
439 # check if there is at least 1 line still staged
440 my $stagedList=GetImportRecordsRange($batch->{'import_batch_id'}, undef, 1, $batch->{import_status}, { order_by_direction => 'ASC' });
441 if (scalar @$stagedList) {
442 push @list, {
443 import_batch_id => $batch->{'import_batch_id'},
444 num_records => $batch->{'num_records'},
445 num_items => $batch->{'num_items'},
446 staged_date => $batch->{'upload_timestamp'},
447 import_status => $batch->{'import_status'},
448 file_name => $batch->{'file_name'},
449 comments => $batch->{'comments'},
451 } else {
452 # if there are no more line to includes, set the status to imported
453 SetImportBatchStatus( $batch->{'import_batch_id'}, 'imported' );
457 $template->param(batch_list => \@list);
458 my $num_batches = GetNumberOfNonZ3950ImportBatches();
459 $template->param(num_results => $num_batches);
462 sub import_biblios_list {
463 my ($template, $import_batch_id) = @_;
464 my $batch = GetImportBatch($import_batch_id,'staged');
465 return () unless $batch and $batch->{import_status} =~ /^staged$|^reverted$/;
466 my $biblios = GetImportRecordsRange($import_batch_id,'','',$batch->{import_status});
467 my @list = ();
468 my $item_error = 0;
470 my $ccodes = { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.ccode' } ) };
471 my $locations = { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' } ) };
472 my $notforloans = { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.notforloan' } ) };
473 # location list
474 my @locations;
475 foreach (sort keys %$locations) {
476 push @locations, { code => $_, description => "$_ - " . $locations->{$_} };
478 my @ccodes;
479 foreach (sort {$ccodes->{$a} cmp $ccodes->{$b}} keys %$ccodes) {
480 push @ccodes, { code => $_, description => $ccodes->{$_} };
482 my @notforloans;
483 foreach (sort {$notforloans->{$a} cmp $notforloans->{$b}} keys %$notforloans) {
484 push @notforloans, { code => $_, description => $notforloans->{$_} };
487 my $biblio_count = 0;
488 foreach my $biblio (@$biblios) {
489 my $item_id = 1;
490 $biblio_count++;
491 my $citation = $biblio->{'title'};
492 $citation .= " $biblio->{'author'}" if $biblio->{'author'};
493 $citation .= " (" if $biblio->{'issn'} or $biblio->{'isbn'};
494 $citation .= $biblio->{'isbn'} if $biblio->{'isbn'};
495 $citation .= ", " if $biblio->{'issn'} and $biblio->{'isbn'};
496 $citation .= $biblio->{'issn'} if $biblio->{'issn'};
497 $citation .= ")" if $biblio->{'issn'} or $biblio->{'isbn'};
498 my $match = GetImportRecordMatches($biblio->{'import_record_id'}, 1);
499 my %cellrecord = (
500 import_record_id => $biblio->{'import_record_id'},
501 citation => $citation,
502 import => 1,
503 status => $biblio->{'status'},
504 record_sequence => $biblio->{'record_sequence'},
505 overlay_status => $biblio->{'overlay_status'},
506 match_biblionumber => $#$match > -1 ? $match->[0]->{'biblionumber'} : 0,
507 match_citation => $#$match > -1 ? $match->[0]->{'title'} || '' . ' ' . $match->[0]->{'author'} || '': '',
508 match_score => $#$match > -1 ? $match->[0]->{'score'} : 0,
510 my ( $marcblob, $encoding ) = GetImportRecordMarc( $biblio->{'import_record_id'} );
511 my $marcrecord = MARC::Record->new_from_usmarc($marcblob) || die "couldn't translate marc information";
513 my $infos = get_infos_syspref('MarcFieldsToOrder', $marcrecord, ['price', 'quantity', 'budget_code', 'discount', 'sort1', 'sort2','replacementprice']);
514 my $price = $infos->{price};
515 my $replacementprice = $infos->{replacementprice};
516 my $quantity = $infos->{quantity};
517 my $budget_code = $infos->{budget_code};
518 my $discount = $infos->{discount};
519 my $sort1 = $infos->{sort1};
520 my $sort2 = $infos->{sort2};
521 my $budget_id;
522 if($budget_code) {
523 my $biblio_budget = GetBudgetByCode($budget_code);
524 if($biblio_budget) {
525 $budget_id = $biblio_budget->{budget_id};
529 # Items
530 my @itemlist = ();
531 my $all_items_quantity = 0;
532 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']);
533 if ($alliteminfos != -1) {
534 foreach my $iteminfos (@$alliteminfos) {
535 my $item_homebranch = $iteminfos->{homebranch};
536 my $item_holdingbranch = $iteminfos->{holdingbranch};
537 my $item_itype = $iteminfos->{itype};
538 my $item_nonpublic_note = $iteminfos->{nonpublic_note};
539 my $item_public_note = $iteminfos->{public_note};
540 my $item_loc = $iteminfos->{loc};
541 my $item_ccode = $iteminfos->{ccode};
542 my $item_notforloan = $iteminfos->{notforloan};
543 my $item_uri = $iteminfos->{uri};
544 my $item_copyno = $iteminfos->{copyno};
545 my $item_quantity = $iteminfos->{quantity} || 1;
546 my $item_budget_code = $iteminfos->{budget_code};
547 my $item_budget_id;
548 if ( $iteminfos->{budget_code} ) {
549 my $item_budget = GetBudgetByCode( $iteminfos->{budget_code} );
550 if ( $item_budget ) {
551 $item_budget_id = $item_budget->{budget_id};
554 my $item_price = $iteminfos->{price};
555 my $item_replacement_price = $iteminfos->{replacementprice};
556 my $item_callnumber = $iteminfos->{itemcallnumber};
558 for (my $i = 0; $i < $item_quantity; $i++) {
560 my %itemrecord = (
561 'item_id' => $item_id++,
562 'biblio_count' => $biblio_count,
563 'homebranch' => $item_homebranch,
564 'holdingbranch' => $item_holdingbranch,
565 'itype' => $item_itype,
566 'nonpublic_note' => $item_nonpublic_note,
567 'public_note' => $item_public_note,
568 'loc' => $item_loc,
569 'ccode' => $item_ccode,
570 'notforloan' => $item_notforloan,
571 'uri' => $item_uri,
572 'copyno' => $item_copyno,
573 'quantity' => $item_quantity,
574 'budget_id' => $item_budget_id || $budget_id,
575 'itemprice' => $item_price || $price,
576 'replacementprice' => $item_replacement_price || $replacementprice,
577 'itemcallnumber' => $item_callnumber,
579 $all_items_quantity++;
580 push @itemlist, \%itemrecord;
585 $cellrecord{'iteminfos'} = \@itemlist;
586 } else {
587 $cellrecord{'item_error'} = 1;
589 push @list, \%cellrecord;
591 if ($alliteminfos == -1 || scalar(@$alliteminfos) == 0) {
592 $cellrecord{price} = $price || '';
593 $cellrecord{replacementprice} = $replacementprice || '';
594 $cellrecord{quantity} = $quantity || '';
595 $cellrecord{budget_id} = $budget_id || '';
596 $cellrecord{discount} = $discount || '';
597 $cellrecord{sort1} = $sort1 || '';
598 $cellrecord{sort2} = $sort2 || '';
599 } else {
600 $cellrecord{quantity} = $all_items_quantity;
604 my $num_records = $batch->{'num_records'};
605 my $overlay_action = GetImportBatchOverlayAction($import_batch_id);
606 my $nomatch_action = GetImportBatchNoMatchAction($import_batch_id);
607 my $item_action = GetImportBatchItemAction($import_batch_id);
608 my @itypes = Koha::ItemTypes->search;
609 $template->param(biblio_list => \@list,
610 num_results => $num_records,
611 import_batch_id => $import_batch_id,
612 "overlay_action_${overlay_action}" => 1,
613 overlay_action => $overlay_action,
614 "nomatch_action_${nomatch_action}" => 1,
615 nomatch_action => $nomatch_action,
616 "item_action_${item_action}" => 1,
617 item_action => $item_action,
618 item_error => $item_error,
619 libraries => scalar Koha::Libraries->search(),
620 locationloop => \@locations,
621 itypeloop => \@itypes,
622 ccodeloop => \@ccodes,
623 notforloanloop => \@notforloans,
625 batch_info($template, $batch);
628 sub batch_info {
629 my ($template, $batch) = @_;
630 $template->param(batch_info => 1,
631 file_name => $batch->{'file_name'},
632 comments => $batch->{'comments'},
633 import_status => $batch->{'import_status'},
634 upload_timestamp => $batch->{'upload_timestamp'},
635 num_records => $batch->{'num_records'},
636 num_items => $batch->{'num_items'});
637 if ($batch->{'num_records'} > 0) {
638 if ($batch->{'import_status'} eq 'staged' or $batch->{'import_status'} eq 'reverted') {
639 $template->param(can_commit => 1);
641 if ($batch->{'import_status'} eq 'imported') {
642 $template->param(can_revert => 1);
645 if (defined $batch->{'matcher_id'}) {
646 my $matcher = C4::Matcher->fetch($batch->{'matcher_id'});
647 if (defined $matcher) {
648 $template->param('current_matcher_id' => $batch->{'matcher_id'},
649 'current_matcher_code' => $matcher->code(),
650 'current_matcher_description' => $matcher->description());
653 add_matcher_list($batch->{'matcher_id'}, $template);
656 sub add_matcher_list {
657 my ($current_matcher_id, $template) = @_;
658 my @matchers = C4::Matcher::GetMatcherList();
659 if (defined $current_matcher_id) {
660 for (my $i = 0; $i <= $#matchers; $i++) {
661 if ($matchers[$i]->{'matcher_id'} == $current_matcher_id) {
662 $matchers[$i]->{'selected'} = 1;
666 $template->param(available_matchers => \@matchers);
669 sub get_infos_syspref {
670 my ($syspref_name, $record, $field_list) = @_;
671 my $syspref = C4::Context->preference($syspref_name);
672 $syspref = "$syspref\n\n"; # YAML is anal on ending \n. Surplus does not hurt
673 my $yaml = eval {
674 YAML::Load($syspref);
676 if ( $@ ) {
677 warn "Unable to parse $syspref syspref : $@";
678 return ();
680 my $r;
681 for my $field_name ( @$field_list ) {
682 next unless exists $yaml->{$field_name};
683 my @fields = split /\|/, $yaml->{$field_name};
684 for my $field ( @fields ) {
685 my ( $f, $sf ) = split /\$/, $field;
686 next unless $f and $sf;
687 if ( my $v = $record->subfield( $f, $sf ) ) {
688 $r->{$field_name} = $v;
690 last if $yaml->{$field};
693 return $r;
696 sub equal_number_of_fields {
697 my ($tags_list, $record) = @_;
698 my $tag_fields_count;
699 for my $tag (@$tags_list) {
700 my @fields = $record->field($tag);
701 $tag_fields_count->{$tag} = scalar @fields;
704 my $tags_count;
705 foreach my $key ( keys %$tag_fields_count ) {
706 if ( $tag_fields_count->{$key} > 0 ) { # Having 0 of a field is ok
707 $tags_count //= $tag_fields_count->{$key}; # Start with the count from the first occurrence
708 return -1 if $tag_fields_count->{$key} != $tags_count; # All counts of various fields should be equal if they exist
712 return $tags_count;
715 sub get_infos_syspref_on_item {
716 my ($syspref_name, $record, $field_list) = @_;
717 my $syspref = C4::Context->preference($syspref_name);
718 $syspref = "$syspref\n\n"; # YAML is anal on ending \n. Surplus does not hurt
719 my $yaml = eval {
720 YAML::Load($syspref);
722 if ( $@ ) {
723 warn "Unable to parse $syspref syspref : $@";
724 return ();
726 my @result;
727 my @tags_list;
729 # Check tags in syspref definition
730 for my $field_name ( @$field_list ) {
731 next unless exists $yaml->{$field_name};
732 my @fields = split /\|/, $yaml->{$field_name};
733 for my $field ( @fields ) {
734 my ( $f, $sf ) = split /\$/, $field;
735 next unless $f and $sf;
736 push @tags_list, $f;
739 @tags_list = List::MoreUtils::uniq(@tags_list);
741 my $tags_count = equal_number_of_fields(\@tags_list, $record);
742 # Return if the number of these fields in the record is not the same.
743 return -1 if $tags_count == -1;
745 # Gather the fields
746 my $fields_hash;
747 foreach my $tag (@tags_list) {
748 my @tmp_fields;
749 foreach my $field ($record->field($tag)) {
750 push @tmp_fields, $field;
752 $fields_hash->{$tag} = \@tmp_fields;
755 for (my $i = 0; $i < $tags_count; $i++) {
756 my $r;
757 for my $field_name ( @$field_list ) {
758 next unless exists $yaml->{$field_name};
759 my @fields = split /\|/, $yaml->{$field_name};
760 for my $field ( @fields ) {
761 my ( $f, $sf ) = split /\$/, $field;
762 next unless $f and $sf;
763 my $v = $fields_hash->{$f}[$i] ? $fields_hash->{$f}[$i]->subfield( $sf ) : undef;
764 $r->{$field_name} = $v if (defined $v);
765 last if $yaml->{$field};
768 push @result, $r;
770 return \@result;