Bug 27655: Add barcode "columnname" to "column_settings.yml"
[koha.git] / cataloguing / additem.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2004-2010 BibLibre
5 # Parts Copyright Catalyst IT 2011
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 use Modern::Perl;
23
24 use CGI qw ( -utf8 );
25 use C4::Auth;
26 use C4::Output;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Context;
30 use C4::Circulation;
31 use C4::Koha;
32 use C4::ClassSource;
33 use Koha::DateUtils;
34 use Koha::Items;
35 use Koha::ItemTypes;
36 use Koha::Libraries;
37 use Koha::Patrons;
38 use Koha::SearchEngine::Indexer;
39 use List::MoreUtils qw/any/;
40 use C4::Search;
41 use Storable qw(thaw freeze);
42 use URI::Escape;
43 use C4::Members;
44
45 use MARC::File::XML;
46 use URI::Escape;
47 use MIME::Base64 qw(decode_base64url encode_base64url);
48
49 our $dbh = C4::Context->dbh;
50
51 sub find_value {
52     my ($tagfield,$insubfield,$record) = @_;
53     my $result;
54     my $indicator;
55     foreach my $field ($record->field($tagfield)) {
56         my @subfields = $field->subfields();
57         foreach my $subfield (@subfields) {
58             if (@$subfield[0] eq $insubfield) {
59                 $result .= @$subfield[1];
60                 $indicator = $field->indicator(1).$field->indicator(2);
61             }
62         }
63     }
64     return($indicator,$result);
65 }
66
67 sub get_item_from_barcode {
68     my ($barcode)=@_;
69     my $dbh=C4::Context->dbh;
70     my $result;
71     my $rq=$dbh->prepare("SELECT itemnumber from items where items.barcode=?");
72     $rq->execute($barcode);
73     ($result)=$rq->fetchrow;
74     return($result);
75 }
76
77 sub set_item_default_location {
78     my $itemnumber = shift;
79     my $item       = Koha::Items->find($itemnumber);
80     if ( C4::Context->preference('NewItemsDefaultLocation') ) {
81         $item->permanent_location($item->location);
82         $item->location(C4::Context->preference('NewItemsDefaultLocation'));
83     }
84     else {
85         # It seems that we are dealing with that in too many places
86         $item->permanent_location($item->location) unless defined $item->permanent_location;
87     }
88     $item->store;
89 }
90
91 # NOTE: This code is subject to change in the future with the implemenation of ajax based autobarcode code
92 # NOTE: 'incremental' is the ONLY autoBarcode option available to those not using javascript
93 sub _increment_barcode {
94     my ($record, $frameworkcode) = @_;
95     my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.barcode" );
96     unless ($record->field($tagfield)->subfield($tagsubfield)) {
97         my $sth_barcode = $dbh->prepare("select max(abs(barcode)) from items");
98         $sth_barcode->execute;
99         my ($newbarcode) = $sth_barcode->fetchrow;
100         $newbarcode++;
101         # OK, we have the new barcode, now create the entry in MARC record
102         my $fieldItem = $record->field($tagfield);
103         $record->delete_field($fieldItem);
104         $fieldItem->add_subfields($tagsubfield => $newbarcode);
105         $record->insert_fields_ordered($fieldItem);
106     }
107     return $record;
108 }
109
110
111 sub generate_subfield_form {
112         my ($tag, $subfieldtag, $value, $tagslib,$subfieldlib, $branches, $biblionumber, $temp, $loop_data, $i, $restrictededition, $item) = @_;
113   
114         my $frameworkcode = &GetFrameworkCode($biblionumber);
115
116         my %subfield_data;
117         my $dbh = C4::Context->dbh;
118         
119         my $index_subfield = int(rand(1000000)); 
120         if ($subfieldtag eq '@'){
121             $subfield_data{id} = "tag_".$tag."_subfield_00_".$index_subfield;
122         } else {
123             $subfield_data{id} = "tag_".$tag."_subfield_".$subfieldtag."_".$index_subfield;
124         }
125         
126         $subfield_data{tag}        = $tag;
127         $subfield_data{subfield}   = $subfieldtag;
128         $subfield_data{marc_lib}   ="<span id=\"error$i\" title=\"".$subfieldlib->{lib}."\">".$subfieldlib->{lib}."</span>";
129         $subfield_data{mandatory}  = $subfieldlib->{mandatory};
130         $subfield_data{important}  = $subfieldlib->{important};
131         $subfield_data{repeatable} = $subfieldlib->{repeatable};
132         $subfield_data{maxlength}  = $subfieldlib->{maxlength};
133         
134         if ( ! defined( $value ) || $value eq '')  {
135             $value = $subfieldlib->{defaultvalue};
136             if ( $value ) {
137                 # get today date & replace <<YYYY>>, <<YY>>, <<MM>>, <<DD>> if provided in the default value
138                 my $today_dt = dt_from_string;
139                 my $year = $today_dt->strftime('%Y');
140                 my $shortyear = $today_dt->strftime('%y');
141                 my $month = $today_dt->strftime('%m');
142                 my $day = $today_dt->strftime('%d');
143                 $value =~ s/<<YYYY>>/$year/g;
144                 $value =~ s/<<YY>>/$shortyear/g;
145                 $value =~ s/<<MM>>/$month/g;
146                 $value =~ s/<<DD>>/$day/g;
147                 # And <<USER>> with surname (?)
148                 my $username=(C4::Context->userenv?C4::Context->userenv->{'surname'}:"superlibrarian");
149                 $value=~s/<<USER>>/$username/g;
150             }
151         }
152
153         $subfield_data{visibility} = "display:none;" if (($subfieldlib->{hidden} > 4) || ($subfieldlib->{hidden} <= -4));
154
155         my $pref_itemcallnumber = C4::Context->preference('itemcallnumber');
156         if (!$value && $subfieldlib->{kohafield} eq 'items.itemcallnumber' && $pref_itemcallnumber) {
157             foreach my $pref_itemcallnumber_part (split(/,/, $pref_itemcallnumber)){
158                 my $CNtag       = substr( $pref_itemcallnumber_part, 0, 3 ); # 3-digit tag number
159                 my $CNsubfields = substr( $pref_itemcallnumber_part, 3 ); # Any and all subfields
160                 my $temp2 = $temp->field($CNtag);
161
162                 next unless $temp2;
163                 $value = $temp2->as_string( $CNsubfields, ' ' );
164                 last if $value;
165             }
166         }
167
168         if ($frameworkcode eq 'FA' && $subfieldlib->{kohafield} eq 'items.barcode' && !$value){
169             my $input = CGI->new;
170             $value = $input->param('barcode');
171         }
172
173         if ( $subfieldlib->{authorised_value} ) {
174             my @authorised_values;
175             my %authorised_lib;
176             # builds list, depending on authorised value...
177             if ( $subfieldlib->{authorised_value} eq "LOST" ) {
178                 my $ClaimReturnedLostValue = C4::Context->preference('ClaimReturnedLostValue');
179                 my $item_is_return_claim = $ClaimReturnedLostValue && $item && $item->itemlost && $ClaimReturnedLostValue eq $item->itemlost;
180                 $subfield_data{IS_RETURN_CLAIM} = $item_is_return_claim;
181
182                 $subfield_data{IS_LOST_AV} = 1;
183
184                 push @authorised_values, qq{};
185                 my $av = GetAuthorisedValues( $subfieldlib->{authorised_value} );
186                 for my $r ( @$av ) {
187                     push @authorised_values, $r->{authorised_value};
188                     $authorised_lib{$r->{authorised_value}} = $r->{lib};
189                 }
190             }
191             elsif ( $subfieldlib->{authorised_value} eq "branches" ) {
192                 foreach my $thisbranch (@$branches) {
193                     push @authorised_values, $thisbranch->{branchcode};
194                     $authorised_lib{$thisbranch->{branchcode}} = $thisbranch->{branchname};
195                     $value = $thisbranch->{branchcode} if $thisbranch->{selected} && !$value;
196                 }
197             }
198             elsif ( $subfieldlib->{authorised_value} eq "itemtypes" ) {
199                   push @authorised_values, "";
200                   my $branch_limit = C4::Context->userenv && C4::Context->userenv->{"branch"};
201                   my $itemtypes;
202                   if($branch_limit) {
203                       $itemtypes = Koha::ItemTypes->search_with_localization({branchcode => $branch_limit});
204                   } else {
205                       $itemtypes = Koha::ItemTypes->search_with_localization;
206                   }
207                   while ( my $itemtype = $itemtypes->next ) {
208                       push @authorised_values, $itemtype->itemtype;
209                       $authorised_lib{$itemtype->itemtype} = $itemtype->translated_description;
210                   }
211
212                   unless ( $value ) {
213                       my $itype_sth = $dbh->prepare("SELECT itemtype FROM biblioitems WHERE biblionumber = ?");
214                       $itype_sth->execute( $biblionumber );
215                       ( $value ) = $itype_sth->fetchrow_array;
216                   }
217           
218                   #---- class_sources
219             }
220             elsif ( $subfieldlib->{authorised_value} eq "cn_source" ) {
221                   push @authorised_values, "";
222                     
223                   my $class_sources = GetClassSources();
224                   my $default_source = C4::Context->preference("DefaultClassificationSource");
225                   
226                   foreach my $class_source (sort keys %$class_sources) {
227                       next unless $class_sources->{$class_source}->{'used'} or
228                                   ($value and $class_source eq $value)      or
229                                   ($class_source eq $default_source);
230                       push @authorised_values, $class_source;
231                       $authorised_lib{$class_source} = $class_sources->{$class_source}->{'description'};
232                   }
233                           $value = $default_source unless ($value);
234         
235                   #---- "true" authorised value
236             }
237             else {
238                   push @authorised_values, qq{};
239                   my $av = GetAuthorisedValues( $subfieldlib->{authorised_value} );
240                   for my $r ( @$av ) {
241                       push @authorised_values, $r->{authorised_value};
242                       $authorised_lib{$r->{authorised_value}} = $r->{lib};
243                   }
244             }
245
246             if ( $subfieldlib->{hidden} > 4 or $subfieldlib->{hidden} <= -4 ) {
247                 $subfield_data{marc_value} = {
248                     type        => 'hidden',
249                     id          => $subfield_data{id},
250                     maxlength   => $subfield_data{maxlength},
251                     value       => $value,
252                     ( ( grep { $_ eq $subfieldlib->{authorised_value}} ( qw(branches itemtypes cn_source) ) ) ? () : ( category => $subfieldlib->{authorised_value}) ),
253                 };
254             }
255             else {
256                 $subfield_data{marc_value} = {
257                     type     => 'select',
258                     id       => "tag_".$tag."_subfield_".$subfieldtag."_".$index_subfield,
259                     values   => \@authorised_values,
260                     labels   => \%authorised_lib,
261                     default  => $value,
262                     ( ( grep { $_ eq $subfieldlib->{authorised_value}} ( qw(branches itemtypes cn_source) ) ) ? () : ( category => $subfieldlib->{authorised_value}) ),
263                 };
264             }
265         }
266             # it's a thesaurus / authority field
267         elsif ( $subfieldlib->{authtypecode} ) {
268                 $subfield_data{marc_value} = {
269                     type         => 'text_auth',
270                     id           => $subfield_data{id},
271                     maxlength    => $subfield_data{maxlength},
272                     value        => $value,
273                     authtypecode => $subfieldlib->{authtypecode},
274                 };
275         }
276             # it's a plugin field
277         elsif ( $subfieldlib->{value_builder} ) { # plugin
278             require Koha::FrameworkPlugin;
279             my $plugin = Koha::FrameworkPlugin->new({
280                 name => $subfieldlib->{'value_builder'},
281                 item_style => 1,
282             });
283             my $pars=  { dbh => $dbh, record => $temp, tagslib =>$tagslib,
284                 id => $subfield_data{id}, tabloop => $loop_data };
285             $plugin->build( $pars );
286             if( !$plugin->errstr ) {
287                 my $class= 'buttonDot'. ( $plugin->noclick? ' disabled': '' );
288                 $subfield_data{marc_value} = {
289                     type        => 'text_plugin',
290                     id          => $subfield_data{id},
291                     maxlength   => $subfield_data{maxlength},
292                     value       => $value,
293                     class       => $class,
294                     nopopup     => $plugin->noclick,
295                     javascript  => $plugin->javascript,
296                 };
297             } else {
298                 warn $plugin->errstr;
299                 $subfield_data{marc_value} = {
300                     type        => 'text',
301                     id          => $subfield_data{id},
302                     maxlength   => $subfield_data{maxlength},
303                     value       => $value,
304                 }; # supply default input form
305             }
306         }
307         elsif ( $tag eq '' ) {       # it's an hidden field
308             $subfield_data{marc_value} = {
309                 type        => 'hidden',
310                 id          => $subfield_data{id},
311                 maxlength   => $subfield_data{maxlength},
312                 value       => $value,
313             };
314         }
315         elsif ( $subfieldlib->{'hidden'} ) {   # FIXME: shouldn't input type be "hidden" ?
316             $subfield_data{marc_value} = {
317                 type        => 'text',
318                 id          => $subfield_data{id},
319                 maxlength   => $subfield_data{maxlength},
320                 value       => $value,
321             };
322         }
323         elsif (
324                 (
325                     $value and length($value) > 100
326                 )
327                 or (
328                     C4::Context->preference("marcflavour") eq "UNIMARC"
329                     and 300 <= $tag && $tag < 400 && $subfieldtag eq 'a'
330                 )
331                 or (
332                     C4::Context->preference("marcflavour") eq "MARC21"
333                     and 500 <= $tag && $tag < 600
334                 )
335               ) {
336             # oversize field (textarea)
337             $subfield_data{marc_value} = {
338                 type        => 'textarea',
339                 id          => $subfield_data{id},
340                 value       => $value,
341             };
342         } else {
343             # it's a standard field
344             $subfield_data{marc_value} = {
345                 type        => 'text',
346                 id          => $subfield_data{id},
347                 maxlength   => $subfield_data{maxlength},
348                 value       => $value,
349             };
350         }
351
352         # Getting list of subfields to keep when restricted editing is enabled
353         my $subfieldsToAllowForRestrictedEditing = C4::Context->preference('SubfieldsToAllowForRestrictedEditing');
354         my $allowAllSubfields = (
355             not defined $subfieldsToAllowForRestrictedEditing
356               or $subfieldsToAllowForRestrictedEditing eq q||
357         ) ? 1 : 0;
358         my @subfieldsToAllow = split(/ /, $subfieldsToAllowForRestrictedEditing);
359
360         # If we're on restricted editing, and our field is not in the list of subfields to allow,
361         # then it is read-only
362         $subfield_data{marc_value}->{readonly} = (
363             not $allowAllSubfields
364             and $restrictededition
365             and !grep { $tag . '$' . $subfieldtag  eq $_ } @subfieldsToAllow
366         ) ? 1: 0;
367
368         return \%subfield_data;
369 }
370
371 # Removes some subfields when prefilling items
372 # This function will remove any subfield that is not in the SubfieldsToUseWhenPrefill syspref
373 sub removeFieldsForPrefill {
374
375     my $item = shift;
376
377     # Getting item tag
378     my ($tag, $subtag) = GetMarcFromKohaField( "items.barcode" );
379
380     # Getting list of subfields to keep
381     my $subfieldsToUseWhenPrefill = C4::Context->preference('SubfieldsToUseWhenPrefill');
382
383     # Removing subfields that are not in the syspref
384     if ($tag && $subfieldsToUseWhenPrefill) {
385         my $field = $item->field($tag);
386         my @subfieldsToUse= split(/ /,$subfieldsToUseWhenPrefill);
387         foreach my $subfield ($field->subfields()) {
388             if (!grep { $subfield->[0] eq $_ } @subfieldsToUse) {
389                 $field->delete_subfield(code => $subfield->[0]);
390             }
391
392         }
393     }
394
395     return $item;
396
397 }
398
399 my $input        = CGI->new;
400 my $error        = $input->param('error');
401
402 my $biblionumber;
403 my $itemnumber;
404 if( $input->param('itemnumber') && !$input->param('biblionumber') ){
405     $itemnumber = $input->param('itemnumber');
406     my $item = Koha::Items->find( $itemnumber );
407     $biblionumber = $item->biblionumber;
408 } else {
409     $biblionumber = $input->param('biblionumber');
410     $itemnumber = $input->param('itemnumber');
411 }
412
413 my $op           = $input->param('op') || q{};
414 my $hostitemnumber = $input->param('hostitemnumber');
415 my $marcflavour  = C4::Context->preference("marcflavour");
416 my $searchid     = $input->param('searchid');
417 # fast cataloguing datas
418 my $fa_circborrowernumber = $input->param('circborrowernumber');
419 my $fa_barcode            = $input->param('barcode');
420 my $fa_branch             = $input->param('branch');
421 my $fa_stickyduedate      = $input->param('stickyduedate');
422 my $fa_duedatespec        = $input->param('duedatespec');
423
424 my $frameworkcode = &GetFrameworkCode($biblionumber);
425
426 # Defining which userflag is needing according to the framework currently used
427 my $userflags;
428 if (defined $input->param('frameworkcode')) {
429     $userflags = ($input->param('frameworkcode') eq 'FA') ? "fast_cataloging" : "edit_items";
430 }
431
432 if (not defined $userflags) {
433     $userflags = ($frameworkcode eq 'FA') ? "fast_cataloging" : "edit_items";
434 }
435
436 my ($template, $loggedinuser, $cookie)
437     = get_template_and_user({template_name => "cataloguing/additem.tt",
438                  query => $input,
439                  type => "intranet",
440                  flagsrequired => {editcatalogue => $userflags},
441                  debug => 1,
442                  });
443
444
445 # Does the user have a restricted item editing permission?
446 my $uid = Koha::Patrons->find( $loggedinuser )->userid;
447 my $restrictededition = $uid ? haspermission($uid,  {'editcatalogue' => 'edit_items_restricted'}) : undef;
448 # In case user is a superlibrarian, editing is not restricted
449 $restrictededition = 0 if ($restrictededition != 0 &&  C4::Context->IsSuperLibrarian());
450 # In case user has fast cataloging permission (and we're in fast cataloging), editing is not restricted
451 $restrictededition = 0 if ($restrictededition != 0 && $frameworkcode eq 'FA' && haspermission($uid, {'editcatalogue' => 'fast_cataloging'}));
452
453 my $tagslib = &GetMarcStructure(1,$frameworkcode);
454 my $record = GetMarcBiblio({ biblionumber => $biblionumber });
455
456 output_and_exit_if_error( $input, $cookie, $template,
457     { module => 'cataloguing', record => $record } );
458
459 my $oldrecord = TransformMarcToKoha($record);
460 my $itemrecord;
461 my $nextop="additem";
462 my @errors; # store errors found while checking data BEFORE saving item.
463
464 # Getting last created item cookie
465 my $prefillitem = C4::Context->preference('PrefillItem');
466 my $justaddeditem;
467 my $cookieitemrecord;
468 if ($prefillitem) {
469     my $lastitemcookie = $input->cookie('LastCreatedItem');
470     if ($lastitemcookie) {
471         $lastitemcookie = decode_base64url($lastitemcookie);
472         eval {
473             if ( thaw($lastitemcookie) ) {
474                 $cookieitemrecord = thaw($lastitemcookie);
475                 $cookieitemrecord = removeFieldsForPrefill($cookieitemrecord);
476             }
477         };
478         if ($@) {
479             $lastitemcookie = 'undef' unless $lastitemcookie;
480             warn "Storable::thaw failed to thaw LastCreatedItem-cookie. Cookie value '".encode_base64url($lastitemcookie)."'. Caught error follows: '$@'";
481         }
482     }
483 }
484
485 #-------------------------------------------------------------------------------
486 if ($op eq "additem") {
487
488     #-------------------------------------------------------------------------------
489     # rebuild
490     my @tags      = $input->multi_param('tag');
491     my @subfields = $input->multi_param('subfield');
492     my @values    = $input->multi_param('field_value');
493     # build indicator hash.
494     my @ind_tag   = $input->multi_param('ind_tag');
495     my @indicator = $input->multi_param('indicator');
496     my $xml = TransformHtmlToXml(\@tags,\@subfields,\@values,\@indicator,\@ind_tag, 'ITEM');
497     my $record = MARC::Record::new_from_xml($xml, 'UTF-8');
498
499     # type of add
500     my $add_submit                 = $input->param('add_submit');
501     my $add_duplicate_submit       = $input->param('add_duplicate_submit');
502     my $add_multiple_copies_submit = $input->param('add_multiple_copies_submit');
503     my $number_of_copies           = $input->param('number_of_copies');
504
505     # This is a bit tricky : if there is a cookie for the last created item and
506     # we just added an item, the cookie value is not correct yet (it will be updated
507     # next page). To prevent the form from being filled with outdated values, we
508     # force the use of "add and duplicate" feature, so the form will be filled with
509     # correct values.
510     $add_duplicate_submit = 1 if ($prefillitem);
511     $justaddeditem = 1;
512
513     # if autoBarcode is set to 'incremental', calculate barcode...
514     if ( C4::Context->preference('autoBarcode') eq 'incremental' ) {
515         $record = _increment_barcode($record, $frameworkcode);
516     }
517
518     my $addedolditem = TransformMarcToKoha( $record );
519
520     # If we have to add or add & duplicate, we add the item
521     if ( $add_submit || $add_duplicate_submit ) {
522
523         # check for item barcode # being unique
524         my $exist_itemnumber = get_item_from_barcode( $addedolditem->{'barcode'} );
525         push @errors, "barcode_not_unique" if ($exist_itemnumber);
526
527         # if barcode exists, don't create, but report The problem.
528         unless ($exist_itemnumber) {
529             my ( $oldbiblionumber, $oldbibnum, $oldbibitemnum ) = AddItemFromMarc( $record, $biblionumber );
530             set_item_default_location($oldbibitemnum);
531
532             # Pushing the last created item cookie back
533             if ($prefillitem && defined $record) {
534                 my $itemcookie = $input->cookie(
535                     -name => 'LastCreatedItem',
536                     # We encode_base64url the whole freezed structure so we're sure we won't have any encoding problems
537                     -value   => encode_base64url( freeze( $record ) ),
538                     -HttpOnly => 1,
539                     -expires => ''
540                 );
541
542                 $cookie = [ $cookie, $itemcookie ];
543             }
544
545         }
546         $nextop = "additem";
547         if ($exist_itemnumber) {
548             $itemrecord = $record;
549         }
550     }
551
552     # If we have to add & duplicate
553     if ($add_duplicate_submit) {
554         $itemrecord = $record;
555         if (C4::Context->preference('autoBarcode') eq 'incremental') {
556             $itemrecord = _increment_barcode($itemrecord, $frameworkcode);
557         }
558         else {
559             # we have to clear the barcode field in the duplicate item record to make way for the new one generated by the javascript plugin
560             my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.barcode" );
561             my $fieldItem = $itemrecord->field($tagfield);
562             $itemrecord->delete_field($fieldItem);
563             $fieldItem->delete_subfields($tagsubfield);
564             $itemrecord->insert_fields_ordered($fieldItem);
565         }
566     $itemrecord = removeFieldsForPrefill($itemrecord) if ($prefillitem);
567     }
568
569     # If we have to add multiple copies
570     if ($add_multiple_copies_submit) {
571
572         use C4::Barcodes;
573         my $barcodeobj = C4::Barcodes->new;
574         my $copynumber = $addedolditem->{'copynumber'};
575         my $oldbarcode = $addedolditem->{'barcode'};
576         my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.barcode" );
577         my ($copytagfield,$copytagsubfield) = &GetMarcFromKohaField( "items.copynumber" );
578
579     # If there is a barcode and we can't find their new values, we can't add multiple copies
580         my $testbarcode;
581         $testbarcode = $barcodeobj->next_value($oldbarcode) if $barcodeobj;
582         if ($oldbarcode && !$testbarcode) {
583
584             push @errors, "no_next_barcode";
585             $itemrecord = $record;
586
587         } else {
588         # We add each item
589
590             # For the first iteration
591             my $barcodevalue = $oldbarcode;
592             my $exist_itemnumber;
593
594
595             for (my $i = 0; $i < $number_of_copies;) {
596
597                 # If there is a barcode
598                 if ($barcodevalue) {
599
600                     # Getting a new barcode (if it is not the first iteration or the barcode we tried already exists)
601                     $barcodevalue = $barcodeobj->next_value($oldbarcode) if ($i > 0 || $exist_itemnumber);
602
603                     # Putting it into the record
604                     if ($barcodevalue) {
605                 if ( C4::Context->preference("autoBarcode") eq 'hbyymmincr' && $i > 0 ) { # The first copy already contains the homebranch prefix
606                     # This is terribly hacky but the easiest way to fix the way hbyymmincr is working
607                     # Contrary to what one might think, the barcode plugin does not prefix the returned string with the homebranch
608                     # For a single item, it is handled with some JS code (see cataloguing/value_builder/barcode.pl)
609                     # But when adding multiple copies we need to prefix it here,
610                     # so we retrieve the homebranch from the item and prefix the barcode with it.
611                     my ($hb_field, $hb_subfield) = GetMarcFromKohaField( "items.homebranch" );
612                     my $homebranch = $record->subfield($hb_field, $hb_subfield);
613                     $barcodevalue = $homebranch . $barcodevalue;
614                 }
615                 $record->field($tagfield)->update($tagsubfield => $barcodevalue);
616                     }
617
618                     # Checking if the barcode already exists
619                     $exist_itemnumber = get_item_from_barcode($barcodevalue);
620                 }
621         # Updating record with the new copynumber
622         if ( $copynumber  ){
623             $record->field($copytagfield)->update($copytagsubfield => $copynumber);
624         }
625
626                 # Adding the item
627         if (!$exist_itemnumber) {
628             my ( $oldbiblionumber, $oldbibnum, $oldbibitemnum ) =
629                 AddItemFromMarc( $record, $biblionumber, { skip_record_index => 1 } );
630             set_item_default_location($oldbibitemnum);
631
632             # We count the item only if it was really added
633             # That way, all items are added, even if there was some already existing barcodes
634             # FIXME : Please note that there is a risk of infinite loop here if we never find a suitable barcode
635             $i++;
636             # Only increment copynumber if item was really added
637             $copynumber++  if ( $copynumber && $copynumber =~ m/^\d+$/ );
638         }
639
640                 # Preparing the next iteration
641                 $oldbarcode = $barcodevalue;
642             }
643
644         my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
645         $indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" );
646
647             undef($itemrecord);
648         }
649     }   
650     if ($frameworkcode eq 'FA' && $fa_circborrowernumber){
651         print $input->redirect(
652            '/cgi-bin/koha/circ/circulation.pl?'
653            .'borrowernumber='.$fa_circborrowernumber
654            .'&barcode='.uri_escape_utf8($fa_barcode)
655            .'&duedatespec='.$fa_duedatespec
656            .'&stickyduedate=1'
657         );
658         exit;
659     }
660
661
662 #-------------------------------------------------------------------------------
663 } elsif ($op eq "edititem") {
664 #-------------------------------------------------------------------------------
665 # retrieve item if exist => then, it's a modif
666     $itemrecord = C4::Items::GetMarcItem($biblionumber,$itemnumber);
667     $nextop = "saveitem";
668 #-------------------------------------------------------------------------------
669 } elsif ($op eq "dupeitem") {
670 #-------------------------------------------------------------------------------
671 # retrieve item if exist => then, it's a modif
672     $itemrecord = C4::Items::GetMarcItem($biblionumber,$itemnumber);
673     if (C4::Context->preference('autoBarcode') eq 'incremental') {
674         $itemrecord = _increment_barcode($itemrecord, $frameworkcode);
675     }
676     else {
677         # we have to clear the barcode field in the duplicate item record to make way for the new one generated by the javascript plugin
678         my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.barcode" );
679         my $fieldItem = $itemrecord->field($tagfield);
680         $itemrecord->delete_field($fieldItem);
681         $fieldItem->delete_subfields($tagsubfield);
682         $itemrecord->insert_fields_ordered($fieldItem);
683     }
684
685     #check for hidden subfield and remove them for the duplicated item
686     foreach my $field ($itemrecord->fields()){
687         my $tag = $field->{_tag};
688         foreach my $subfield ($field->subfields()){
689             my $subfieldtag = $subfield->[0];
690             if ($tagslib->{$tag}->{$subfieldtag}->{'tab'} ne "10"
691             ||  abs($tagslib->{$tag}->{$subfieldtag}->{hidden})>4 ){
692                 my $fieldItem = $itemrecord->field($tag);
693                 $itemrecord->delete_field($fieldItem);
694                 $fieldItem->delete_subfields($subfieldtag);
695                 $itemrecord->insert_fields_ordered($fieldItem);
696             }
697         }
698     }
699
700     $itemrecord = removeFieldsForPrefill($itemrecord) if ($prefillitem);
701     $nextop = "additem";
702 #-------------------------------------------------------------------------------
703 } elsif ($op eq "delitem") {
704 #-------------------------------------------------------------------------------
705     # check that there is no issue on this item before deletion.
706     my $item = Koha::Items->find($itemnumber);
707     $error = $item->safe_delete;
708     if(ref($error) eq 'Koha::Item'){
709         print $input->redirect("additem.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode&searchid=$searchid");
710     }else{
711         push @errors,$error;
712         $nextop="additem";
713     }
714 #-------------------------------------------------------------------------------
715 } elsif ($op eq "delallitems") {
716 #-------------------------------------------------------------------------------
717     my $items = Koha::Items->search({ biblionumber => $biblionumber });
718     while ( my $item = $items->next ) {
719         $error = $item->safe_delete({ skip_record_index => 1 });
720         next if ref $error eq 'Koha::Item'; # Deleted item is returned if deletion successful
721         push @errors,$error;
722     }
723     my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
724     $indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" );
725     if ( @errors ) {
726         $nextop="additem";
727     } else {
728         my $defaultview = C4::Context->preference('IntranetBiblioDefaultView');
729         my $views = { C4::Search::enabled_staff_search_views };
730         if ($defaultview eq 'isbd' && $views->{can_view_ISBD}) {
731             print $input->redirect("/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
732         } elsif  ($defaultview eq 'marc' && $views->{can_view_MARC}) {
733             print $input->redirect("/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
734         } elsif  ($defaultview eq 'labeled_marc' && $views->{can_view_labeledMARC}) {
735             print $input->redirect("/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
736         } else {
737             print $input->redirect("/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber&searchid=$searchid");
738         }
739         exit;
740     }
741 #-------------------------------------------------------------------------------
742 } elsif ($op eq "saveitem") {
743 #-------------------------------------------------------------------------------
744     # rebuild
745     my @tags      = $input->multi_param('tag');
746     my @subfields = $input->multi_param('subfield');
747     my @values    = $input->multi_param('field_value');
748     # build indicator hash.
749     my @ind_tag   = $input->multi_param('ind_tag');
750     my @indicator = $input->multi_param('indicator');
751     # my $itemnumber = $input->param('itemnumber');
752     my $xml = TransformHtmlToXml(\@tags,\@subfields,\@values,\@indicator,\@ind_tag,'ITEM');
753     my $itemtosave=MARC::Record::new_from_xml($xml, 'UTF-8');
754     # MARC::Record builded => now, record in DB
755     # warn "R: ".$record->as_formatted;
756     # check that the barcode don't exist already
757     my $addedolditem = TransformMarcToKoha($itemtosave);
758     my $exist_itemnumber = get_item_from_barcode($addedolditem->{'barcode'});
759     if ($exist_itemnumber && $exist_itemnumber != $itemnumber) {
760         push @errors,"barcode_not_unique";
761     } else {
762         my $item = Koha::Items->find($itemnumber );
763         my $newitem = ModItemFromMarc($itemtosave, $biblionumber, $itemnumber);
764         $itemnumber = q{};
765         my $olditemlost = $item->itemlost;
766         my $newitemlost = $newitem->{itemlost};
767         if ( $newitemlost && $newitemlost ge '1' && !$olditemlost ) {
768             LostItem( $item->itemnumber, 'additem' )
769         }
770     }
771     $nextop="additem";
772 } elsif ($op eq "delinkitem"){
773
774     my $analyticfield = '773';
775         if ($marcflavour  eq 'MARC21' || $marcflavour eq 'NORMARC'){
776         $analyticfield = '773';
777     } elsif ($marcflavour eq 'UNIMARC') {
778         $analyticfield = '461';
779     }
780     foreach my $field ($record->field($analyticfield)){
781         if ($field->subfield('9') eq $hostitemnumber){
782             $record->delete_field($field);
783             last;
784         }
785     }
786         my $modbibresult = ModBiblio($record, $biblionumber,'');
787 }
788
789 # update OAI-PMH sets
790 if ($op) {
791     if (C4::Context->preference("OAI-PMH:AutoUpdateSets")) {
792         C4::OAI::Sets::UpdateOAISetsBiblio($biblionumber, $record);
793     }
794 }
795
796 #
797 #-------------------------------------------------------------------------------
798 # build screen with existing items. and "new" one
799 #-------------------------------------------------------------------------------
800
801 # now, build existiing item list
802 my $temp = GetMarcBiblio({ biblionumber => $biblionumber });
803 #my @fields = $record->fields();
804
805
806 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
807 my @big_array;
808 #---- finds where items.itemnumber is stored
809 my (  $itemtagfield,   $itemtagsubfield) = &GetMarcFromKohaField( "items.itemnumber" );
810 my ($branchtagfield, $branchtagsubfield) = &GetMarcFromKohaField( "items.homebranch" );
811 C4::Biblio::EmbedItemsInMarcBiblio({
812     marc_record  => $temp,
813     biblionumber => $biblionumber });
814 my @fields = $temp->fields();
815
816
817 my @hostitemnumbers;
818 if ( C4::Context->preference('EasyAnalyticalRecords') ) {
819     my $analyticfield = '773';
820     if ($marcflavour  eq 'MARC21' || $marcflavour eq 'NORMARC') {
821         $analyticfield = '773';
822     } elsif ($marcflavour eq 'UNIMARC') {
823         $analyticfield = '461';
824     }
825     foreach my $hostfield ($temp->field($analyticfield)){
826         my $hostbiblionumber = $hostfield->subfield('0');
827         if ($hostbiblionumber){
828             my $hostrecord = GetMarcBiblio({
829                 biblionumber => $hostbiblionumber,
830                 embed_items  => 1 });
831             if ($hostrecord) {
832                 my ($itemfield, undef) = GetMarcFromKohaField( 'items.itemnumber' );
833                 foreach my $hostitem ($hostrecord->field($itemfield)){
834                     if ($hostitem->subfield('9') eq $hostfield->subfield('9')){
835                         push (@fields, $hostitem);
836                         push (@hostitemnumbers, $hostfield->subfield('9'));
837                     }
838                 }
839             }
840         }
841     }
842 }
843
844 foreach my $field (@fields) {
845     next if ( $field->tag() < 10 );
846
847     my @subf = $field->subfields or ();    # don't use ||, as that forces $field->subfelds to be interpreted in scalar context
848     my %this_row;
849     # loop through each subfield
850     my $i = 0;
851     foreach my $subfield (@subf){
852         my $subfieldcode = $subfield->[0];
853         my $subfieldvalue= $subfield->[1];
854
855         next if ($tagslib->{$field->tag()}->{$subfieldcode}->{tab} ne 10 
856                 && ($field->tag() ne $itemtagfield 
857                 && $subfieldcode   ne $itemtagsubfield));
858         $witness{$subfieldcode} = $tagslib->{$field->tag()}->{$subfieldcode}->{lib} if ($tagslib->{$field->tag()}->{$subfieldcode}->{tab}  eq 10);
859                 if ($tagslib->{$field->tag()}->{$subfieldcode}->{tab}  eq 10) {
860                     $this_row{$subfieldcode} .= " | " if($this_row{$subfieldcode});
861                 $this_row{$subfieldcode} .= GetAuthorisedValueDesc( $field->tag(),
862                         $subfieldcode, $subfieldvalue, '', $tagslib) 
863                                                 || $subfieldvalue;
864         }
865
866         if (($field->tag eq $branchtagfield) && ($subfieldcode eq $branchtagsubfield) && C4::Context->preference("IndependentBranches")) {
867             #verifying rights
868             my $userenv = C4::Context->userenv();
869             unless (C4::Context->IsSuperLibrarian() or (($userenv->{'branch'} eq $subfieldvalue))){
870                 $this_row{'nomod'} = 1;
871             }
872         }
873         $this_row{itemnumber} = $subfieldvalue if ($field->tag() eq $itemtagfield && $subfieldcode eq $itemtagsubfield);
874
875         if ( C4::Context->preference('EasyAnalyticalRecords') ) {
876             foreach my $hostitemnumber (@hostitemnumbers) {
877                 my $item = Koha::Items->find( $hostitemnumber );
878                 if ($this_row{itemnumber} eq $hostitemnumber) {
879                     $this_row{hostitemflag} = 1;
880                     $this_row{hostbiblionumber}= $item->biblio->biblionumber;
881                     last;
882                 }
883             }
884         }
885     }
886     if (%this_row) {
887         push(@big_array, \%this_row);
888     }
889 }
890
891 my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField( "items.holdingbranch" );
892 @big_array = sort {$a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf}} @big_array;
893
894 # now, construct template !
895 # First, the existing items for display
896 my @item_value_loop;
897 my @header_value_loop;
898 for my $row ( @big_array ) {
899     my %row_data;
900     my @item_fields;
901     foreach my $key (sort keys %witness){
902         my $item_field;
903         if ( $row->{$key} ){
904             $item_field->{field} = $row->{$key};
905         } else {
906             $item_field->{field} = '';
907         }
908
909         for my $kohafield (
910             qw( items.dateaccessioned items.onloan items.datelastseen items.datelastborrowed items.replacementpricedate )
911           )
912         {
913             my ( undef, $subfield ) = GetMarcFromKohaField($kohafield);
914             next unless $key eq $subfield;
915             $item_field->{datatype} = 'date';
916         }
917
918         push @item_fields, $item_field;
919     }
920     $row_data{item_value} = [ @item_fields ];
921     $row_data{itemnumber} = $row->{itemnumber};
922     #reporting this_row values
923     $row_data{'nomod'} = $row->{'nomod'};
924     $row_data{'hostitemflag'} = $row->{'hostitemflag'};
925     $row_data{'hostbiblionumber'} = $row->{'hostbiblionumber'};
926 #       $row_data{'countanalytics'} = $row->{'countanalytics'};
927     push(@item_value_loop,\%row_data);
928 }
929 foreach my $subfield_code (sort keys(%witness)) {
930     my %header_value;
931     $header_value{header_value} = $witness{$subfield_code};
932
933     my $subfieldlib = $tagslib->{$itemtagfield}->{$subfield_code};
934     my $kohafield = $subfieldlib->{kohafield};
935     if ( $kohafield && $kohafield =~ /items.(.+)/ ) {
936         $header_value{column_name} = $1;
937     }
938
939     push(@header_value_loop, \%header_value);
940 }
941
942 # now, build the item form for entering a new item
943 my @loop_data =();
944 my $i=0;
945
946 my $branch = $input->param('branch') || C4::Context->userenv->{branch};
947 my $libraries = Koha::Libraries->search({}, { order_by => ['branchname'] })->unblessed;# build once ahead of time, instead of multiple times later.
948 for my $library ( @$libraries ) {
949     $library->{selected} = 1 if $library->{branchcode} eq $branch
950 }
951
952 my $item = Koha::Items->find($itemnumber);
953
954 # We generate form, from actuel record
955 @fields = ();
956 if($itemrecord){
957     foreach my $field ($itemrecord->fields()){
958         my $tag = $field->{_tag};
959         foreach my $subfield ( $field->subfields() ){
960
961             my $subfieldtag = $subfield->[0];
962             my $value       = $subfield->[1];
963             my $subfieldlib = $tagslib->{$tag}->{$subfieldtag};
964
965             next if ($tagslib->{$tag}->{$subfieldtag}->{'tab'} ne "10");
966
967             my $subfield_data = generate_subfield_form($tag, $subfieldtag, $value, $tagslib, $subfieldlib, $libraries, $biblionumber, $temp, \@loop_data, $i, $restrictededition, $item);
968             push @fields, "$tag$subfieldtag";
969             push (@loop_data, $subfield_data);
970             $i++;
971                     }
972
973                 }
974             }
975     # and now we add fields that are empty
976
977 # Using last created item if it exists
978
979 $itemrecord = $cookieitemrecord if ($prefillitem and not $justaddeditem and $op ne "edititem");
980
981 # We generate form, and fill with values if defined
982 foreach my $tag ( keys %{$tagslib}){
983     foreach my $subtag (keys %{$tagslib->{$tag}}){
984         next if IsMarcStructureInternal($tagslib->{$tag}{$subtag});
985         next if ($tagslib->{$tag}->{$subtag}->{'tab'} ne "10");
986         next if any { /^$tag$subtag$/ }  @fields;
987
988         my @values = (undef);
989         @values = $itemrecord->field($tag)->subfield($subtag) if ($itemrecord && defined($itemrecord->field($tag)) && defined($itemrecord->field($tag)->subfield($subtag)));
990         for my $value (@values){
991             my $subfield_data = generate_subfield_form($tag, $subtag, $value, $tagslib, $tagslib->{$tag}->{$subtag}, $libraries, $biblionumber, $temp, \@loop_data, $i, $restrictededition, $item);
992             push (@loop_data, $subfield_data);
993             $i++;
994         }
995   }
996 }
997 @loop_data = sort {$a->{subfield} cmp $b->{subfield} } @loop_data;
998
999 # what's the next op ? it's what we are not in : an add if we're editing, otherwise, and edit.
1000 $template->param(
1001     biblionumber => $biblionumber,
1002     title        => $oldrecord->{title},
1003     author       => $oldrecord->{author},
1004     item_loop        => \@item_value_loop,
1005     item_header_loop => \@header_value_loop,
1006     item             => \@loop_data,
1007     itemnumber       => $itemnumber,
1008     barcode          => $item ? $item->barcode : undef,
1009     itemtagfield     => $itemtagfield,
1010     itemtagsubfield  => $itemtagsubfield,
1011     op      => $nextop,
1012     popup => scalar $input->param('popup') ? 1: 0,
1013     C4::Search::enabled_staff_search_views,
1014 );
1015 $template->{'VARS'}->{'searchid'} = $searchid;
1016
1017 if ($frameworkcode eq 'FA'){
1018     # fast cataloguing datas
1019     $template->param(
1020         'circborrowernumber' => $fa_circborrowernumber,
1021         'barcode'            => $fa_barcode,
1022         'branch'             => $fa_branch,
1023         'stickyduedate'      => $fa_stickyduedate,
1024         'duedatespec'        => $fa_duedatespec,
1025     );
1026 }
1027
1028 foreach my $error (@errors) {
1029     $template->param($error => 1);
1030 }
1031 output_html_with_http_headers $input, $cookie, $template->output;