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