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