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