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