Bug 17057: (follow-up) Replace onsubmit attributes
[koha.git] / cataloguing / additem.pl
blobce12b0a934ecbbf42a501df6886b8ca80f834b2b
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2004-2010 BibLibre
5 # Parts Copyright Catalyst IT 2011
7 # This file is part of Koha.
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.
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.
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>.
22 use Modern::Perl;
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;
44 use MARC::File::XML;
45 use URI::Escape;
47 our $dbh = C4::Context->dbh;
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);
62 return($indicator,$result);
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);
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(
81 permanent_location => $item->location,
82 location => C4::Context->preference('NewItemsDefaultLocation')
84 undef,
85 $itemnumber
88 else {
89 ModItem( { permanent_location => $item->location }, undef, $itemnumber )
90 unless defined $item->permanent_location;
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);
110 return $record;
114 sub generate_subfield_form {
115 my ($tag, $subfieldtag, $value, $tagslib,$subfieldlib, $branches, $biblionumber, $temp, $loop_data, $i, $restrictededition) = @_;
117 my $frameworkcode = &GetFrameworkCode($biblionumber);
119 my %subfield_data;
120 my $dbh = C4::Context->dbh;
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;
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};
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;
153 $subfield_data{visibility} = "display:none;" if (($subfieldlib->{hidden} > 4) || ($subfieldlib->{hidden} <= -4));
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;
168 if ($frameworkcode eq 'FA' && $subfieldlib->{kohafield} eq 'items.barcode' && !$value){
169 my $input = new CGI;
170 $value = $input->param('barcode');
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;
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;
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;
198 #---- class_sources
200 elsif ( $subfieldlib->{authorised_value} eq "cn_source" ) {
201 push @authorised_values, "";
203 my $class_sources = GetClassSources();
204 my $default_source = C4::Context->preference("DefaultClassificationSource");
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'};
213 $value = $default_source unless ($value);
215 #---- "true" authorised value
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};
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,
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,
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},
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,
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,
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
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,
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,
301 elsif (
303 $value and length($value) > 100
305 or (
306 C4::Context->preference("marcflavour") eq "UNIMARC"
307 and 300 <= $tag && $tag < 400 && $subfieldtag eq 'a'
309 or (
310 C4::Context->preference("marcflavour") eq "MARC21"
311 and 500 <= $tag && $tag < 600
314 # oversize field (textarea)
315 $subfield_data{marc_value} = {
316 type => 'textarea',
317 id => $subfield_data{id},
318 value => $value,
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,
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);
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;
346 return \%subfield_data;
349 # Removes some subfields when prefilling items
350 # This function will remove any subfield that is not in the SubfieldsToUseWhenPrefill syspref
351 sub removeFieldsForPrefill {
353 my $item = shift;
355 # Getting item tag
356 my ($tag, $subtag) = GetMarcFromKohaField( "items.barcode" );
358 # Getting list of subfields to keep
359 my $subfieldsToUseWhenPrefill = C4::Context->preference('SubfieldsToUseWhenPrefill');
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]);
373 return $item;
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');
392 my $frameworkcode = &GetFrameworkCode($biblionumber);
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";
400 if (not defined $userflags) {
401 $userflags = ($frameworkcode eq 'FA') ? "fast_cataloging" : "edit_items";
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,
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'}));
422 my $tagslib = &GetMarcStructure(1,$frameworkcode);
423 my $record = GetMarcBiblio({ biblionumber => $biblionumber });
425 output_and_exit_if_error( $input, $cookie, $template,
426 { module => 'cataloguing', record => $record } );
428 my $oldrecord = TransformMarcToKoha($record);
429 my $itemrecord;
430 my $nextop="additem";
431 my @errors; # store errors found while checking data BEFORE saving item.
433 # Getting last created item cookie
434 my $prefillitem = C4::Context->preference('PrefillItem');
435 my $justaddeditem;
436 my $cookieitemrecord;
437 if ($prefillitem) {
438 my $lastitemcookie = $input->cookie('LastCreatedItem');
439 if ($lastitemcookie) {
440 $lastitemcookie = uri_unescape($lastitemcookie);
441 eval {
442 if ( thaw($lastitemcookie) ) {
443 $cookieitemrecord = thaw($lastitemcookie);
444 $cookieitemrecord = removeFieldsForPrefill($cookieitemrecord);
447 if ($@) {
448 $lastitemcookie = 'undef' unless $lastitemcookie;
449 warn "Storable::thaw failed to thaw LastCreatedItem-cookie. Cookie value '$lastitemcookie'. Caught error follows: '$@'";
454 #-------------------------------------------------------------------------------
455 if ($op eq "additem") {
457 #-------------------------------------------------------------------------------
458 # rebuild
459 my @tags = $input->multi_param('tag');
460 my @subfields = $input->multi_param('subfield');
461 my @values = $input->multi_param('field_value');
462 # build indicator hash.
463 my @ind_tag = $input->multi_param('ind_tag');
464 my @indicator = $input->multi_param('indicator');
465 my $xml = TransformHtmlToXml(\@tags,\@subfields,\@values,\@indicator,\@ind_tag, 'ITEM');
466 my $record = MARC::Record::new_from_xml($xml, 'UTF-8');
468 # type of add
469 my $add_submit = $input->param('add_submit');
470 my $add_duplicate_submit = $input->param('add_duplicate_submit');
471 my $add_multiple_copies_submit = $input->param('add_multiple_copies_submit');
472 my $number_of_copies = $input->param('number_of_copies');
474 # This is a bit tricky : if there is a cookie for the last created item and
475 # we just added an item, the cookie value is not correct yet (it will be updated
476 # next page). To prevent the form from being filled with outdated values, we
477 # force the use of "add and duplicate" feature, so the form will be filled with
478 # correct values.
479 $add_duplicate_submit = 1 if ($prefillitem);
480 $justaddeditem = 1;
482 # if autoBarcode is set to 'incremental', calculate barcode...
483 if ( C4::Context->preference('autoBarcode') eq 'incremental' ) {
484 $record = _increment_barcode($record, $frameworkcode);
487 my $addedolditem = TransformMarcToKoha( $record );
489 # If we have to add or add & duplicate, we add the item
490 if ( $add_submit || $add_duplicate_submit ) {
492 # check for item barcode # being unique
493 my $exist_itemnumber = get_item_from_barcode( $addedolditem->{'barcode'} );
494 push @errors, "barcode_not_unique" if ($exist_itemnumber);
496 # if barcode exists, don't create, but report The problem.
497 unless ($exist_itemnumber) {
498 my ( $oldbiblionumber, $oldbibnum, $oldbibitemnum ) = AddItemFromMarc( $record, $biblionumber );
499 set_item_default_location($oldbibitemnum);
501 # Pushing the last created item cookie back
502 if ($prefillitem && defined $record) {
503 my $itemcookie = $input->cookie(
504 -name => 'LastCreatedItem',
505 # We uri_escape the whole freezed structure so we're sure we won't have any encoding problems
506 -value => uri_escape_utf8( freeze( $record ) ),
507 -HttpOnly => 1,
508 -expires => ''
511 $cookie = [ $cookie, $itemcookie ];
515 $nextop = "additem";
516 if ($exist_itemnumber) {
517 $itemrecord = $record;
521 # If we have to add & duplicate
522 if ($add_duplicate_submit) {
523 $itemrecord = $record;
524 if (C4::Context->preference('autoBarcode') eq 'incremental') {
525 $itemrecord = _increment_barcode($itemrecord, $frameworkcode);
527 else {
528 # we have to clear the barcode field in the duplicate item record to make way for the new one generated by the javascript plugin
529 my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.barcode" );
530 my $fieldItem = $itemrecord->field($tagfield);
531 $itemrecord->delete_field($fieldItem);
532 $fieldItem->delete_subfields($tagsubfield);
533 $itemrecord->insert_fields_ordered($fieldItem);
535 $itemrecord = removeFieldsForPrefill($itemrecord) if ($prefillitem);
538 # If we have to add multiple copies
539 if ($add_multiple_copies_submit) {
541 use C4::Barcodes;
542 my $barcodeobj = C4::Barcodes->new;
543 my $copynumber = $addedolditem->{'copynumber'};
544 my $oldbarcode = $addedolditem->{'barcode'};
545 my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.barcode" );
546 my ($copytagfield,$copytagsubfield) = &GetMarcFromKohaField( "items.copynumber" );
548 # If there is a barcode and we can't find their new values, we can't add multiple copies
549 my $testbarcode;
550 $testbarcode = $barcodeobj->next_value($oldbarcode) if $barcodeobj;
551 if ($oldbarcode && !$testbarcode) {
553 push @errors, "no_next_barcode";
554 $itemrecord = $record;
556 } else {
557 # We add each item
559 # For the first iteration
560 my $barcodevalue = $oldbarcode;
561 my $exist_itemnumber;
564 for (my $i = 0; $i < $number_of_copies;) {
566 # If there is a barcode
567 if ($barcodevalue) {
569 # Getting a new barcode (if it is not the first iteration or the barcode we tried already exists)
570 $barcodevalue = $barcodeobj->next_value($oldbarcode) if ($i > 0 || $exist_itemnumber);
572 # Putting it into the record
573 if ($barcodevalue) {
574 $record->field($tagfield)->update($tagsubfield => $barcodevalue);
577 # Checking if the barcode already exists
578 $exist_itemnumber = get_item_from_barcode($barcodevalue);
580 # Updating record with the new copynumber
581 if ( $copynumber ){
582 $record->field($copytagfield)->update($copytagsubfield => $copynumber);
585 # Adding the item
586 if (!$exist_itemnumber) {
587 my ($oldbiblionumber,$oldbibnum,$oldbibitemnum) = AddItemFromMarc($record,$biblionumber);
588 set_item_default_location($oldbibitemnum);
590 # We count the item only if it was really added
591 # That way, all items are added, even if there was some already existing barcodes
592 # FIXME : Please note that there is a risk of infinite loop here if we never find a suitable barcode
593 $i++;
594 # Only increment copynumber if item was really added
595 $copynumber++ if ( $copynumber && $copynumber =~ m/^\d+$/ );
598 # Preparing the next iteration
599 $oldbarcode = $barcodevalue;
601 undef($itemrecord);
604 if ($frameworkcode eq 'FA' && $fa_circborrowernumber){
605 print $input->redirect(
606 '/cgi-bin/koha/circ/circulation.pl?'
607 .'borrowernumber='.$fa_circborrowernumber
608 .'&barcode='.uri_escape_utf8($fa_barcode)
609 .'&duedatespec='.$fa_duedatespec
610 .'&stickyduedate=1'
612 exit;
616 #-------------------------------------------------------------------------------
617 } elsif ($op eq "edititem") {
618 #-------------------------------------------------------------------------------
619 # retrieve item if exist => then, it's a modif
620 $itemrecord = C4::Items::GetMarcItem($biblionumber,$itemnumber);
621 $nextop = "saveitem";
622 #-------------------------------------------------------------------------------
623 } elsif ($op eq "dupeitem") {
624 #-------------------------------------------------------------------------------
625 # retrieve item if exist => then, it's a modif
626 $itemrecord = C4::Items::GetMarcItem($biblionumber,$itemnumber);
627 if (C4::Context->preference('autoBarcode') eq 'incremental') {
628 $itemrecord = _increment_barcode($itemrecord, $frameworkcode);
630 else {
631 # we have to clear the barcode field in the duplicate item record to make way for the new one generated by the javascript plugin
632 my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.barcode" );
633 my $fieldItem = $itemrecord->field($tagfield);
634 $itemrecord->delete_field($fieldItem);
635 $fieldItem->delete_subfields($tagsubfield);
636 $itemrecord->insert_fields_ordered($fieldItem);
639 #check for hidden subfield and remove them for the duplicated item
640 foreach my $field ($itemrecord->fields()){
641 my $tag = $field->{_tag};
642 foreach my $subfield ($field->subfields()){
643 my $subfieldtag = $subfield->[0];
644 if ($tagslib->{$tag}->{$subfieldtag}->{'tab'} ne "10"
645 || abs($tagslib->{$tag}->{$subfieldtag}->{hidden})>4 ){
646 my $fieldItem = $itemrecord->field($tag);
647 $itemrecord->delete_field($fieldItem);
648 $fieldItem->delete_subfields($subfieldtag);
649 $itemrecord->insert_fields_ordered($fieldItem);
654 $itemrecord = removeFieldsForPrefill($itemrecord) if ($prefillitem);
655 $nextop = "additem";
656 #-------------------------------------------------------------------------------
657 } elsif ($op eq "delitem") {
658 #-------------------------------------------------------------------------------
659 # check that there is no issue on this item before deletion.
660 $error = &DelItemCheck( $biblionumber,$itemnumber);
661 if($error == 1){
662 print $input->redirect("additem.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode&searchid=$searchid");
663 }else{
664 push @errors,$error;
665 $nextop="additem";
667 #-------------------------------------------------------------------------------
668 } elsif ($op eq "delallitems") {
669 #-------------------------------------------------------------------------------
670 my @itemnumbers = Koha::Items->search({ biblionumber => $biblionumber })->get_column('itemnumber');
671 foreach my $itemnumber ( @itemnumbers ) {
672 $error = C4::Items::DelItemCheck( $biblionumber, $itemnumber );
673 next if $error == 1; # Means ok
674 push @errors,$error;
676 if ( @errors ) {
677 $nextop="additem";
678 } else {
679 my $defaultview = C4::Context->preference('IntranetBiblioDefaultView');
680 my $views = { C4::Search::enabled_staff_search_views };
681 if ($defaultview eq 'isbd' && $views->{can_view_ISBD}) {
682 print $input->redirect("/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
683 } elsif ($defaultview eq 'marc' && $views->{can_view_MARC}) {
684 print $input->redirect("/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
685 } elsif ($defaultview eq 'labeled_marc' && $views->{can_view_labeledMARC}) {
686 print $input->redirect("/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
687 } else {
688 print $input->redirect("/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber&searchid=$searchid");
690 exit;
692 #-------------------------------------------------------------------------------
693 } elsif ($op eq "saveitem") {
694 #-------------------------------------------------------------------------------
695 # rebuild
696 my @tags = $input->multi_param('tag');
697 my @subfields = $input->multi_param('subfield');
698 my @values = $input->multi_param('field_value');
699 # build indicator hash.
700 my @ind_tag = $input->multi_param('ind_tag');
701 my @indicator = $input->multi_param('indicator');
702 # my $itemnumber = $input->param('itemnumber');
703 my $xml = TransformHtmlToXml(\@tags,\@subfields,\@values,\@indicator,\@ind_tag,'ITEM');
704 my $itemtosave=MARC::Record::new_from_xml($xml, 'UTF-8');
705 # MARC::Record builded => now, record in DB
706 # warn "R: ".$record->as_formatted;
707 # check that the barcode don't exist already
708 my $addedolditem = TransformMarcToKoha($itemtosave);
709 my $exist_itemnumber = get_item_from_barcode($addedolditem->{'barcode'});
710 if ($exist_itemnumber && $exist_itemnumber != $itemnumber) {
711 push @errors,"barcode_not_unique";
712 } else {
713 my $item = Koha::Items->find($itemnumber );
714 my $newitem = ModItemFromMarc($itemtosave, $biblionumber, $itemnumber);
715 $itemnumber = q{};
716 my $olditemlost = $item->itemlost;
717 my $newitemlost = $newitem->{itemlost};
718 LostItem( $item->itemnumber, 'additem' )
719 if $newitemlost && $newitemlost ge '1' && !$olditemlost;
721 $nextop="additem";
722 } elsif ($op eq "delinkitem"){
723 my $analyticfield = '773';
724 if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC'){
725 $analyticfield = '773';
726 } elsif ($marcflavour eq 'UNIMARC') {
727 $analyticfield = '461';
729 foreach my $field ($record->field($analyticfield)){
730 if ($field->subfield('9') eq $hostitemnumber){
731 $record->delete_field($field);
732 last;
735 my $modbibresult = ModBiblio($record, $biblionumber,'');
739 #-------------------------------------------------------------------------------
740 # build screen with existing items. and "new" one
741 #-------------------------------------------------------------------------------
743 # now, build existiing item list
744 my $temp = GetMarcBiblio({ biblionumber => $biblionumber });
745 #my @fields = $record->fields();
748 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
749 my @big_array;
750 #---- finds where items.itemnumber is stored
751 my ( $itemtagfield, $itemtagsubfield) = &GetMarcFromKohaField( "items.itemnumber" );
752 my ($branchtagfield, $branchtagsubfield) = &GetMarcFromKohaField( "items.homebranch" );
753 C4::Biblio::EmbedItemsInMarcBiblio({
754 marc_record => $temp,
755 biblionumber => $biblionumber });
756 my @fields = $temp->fields();
759 my @hostitemnumbers;
760 if ( C4::Context->preference('EasyAnalyticalRecords') ) {
761 my $analyticfield = '773';
762 if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC') {
763 $analyticfield = '773';
764 } elsif ($marcflavour eq 'UNIMARC') {
765 $analyticfield = '461';
767 foreach my $hostfield ($temp->field($analyticfield)){
768 my $hostbiblionumber = $hostfield->subfield('0');
769 if ($hostbiblionumber){
770 my $hostrecord = GetMarcBiblio({
771 biblionumber => $hostbiblionumber,
772 embed_items => 1 });
773 if ($hostrecord) {
774 my ($itemfield, undef) = GetMarcFromKohaField( 'items.itemnumber' );
775 foreach my $hostitem ($hostrecord->field($itemfield)){
776 if ($hostitem->subfield('9') eq $hostfield->subfield('9')){
777 push (@fields, $hostitem);
778 push (@hostitemnumbers, $hostfield->subfield('9'));
787 foreach my $field (@fields) {
788 next if ( $field->tag() < 10 );
790 my @subf = $field->subfields or (); # don't use ||, as that forces $field->subfelds to be interpreted in scalar context
791 my %this_row;
792 # loop through each subfield
793 my $i = 0;
794 foreach my $subfield (@subf){
795 my $subfieldcode = $subfield->[0];
796 my $subfieldvalue= $subfield->[1];
798 next if ($tagslib->{$field->tag()}->{$subfieldcode}->{tab} ne 10
799 && ($field->tag() ne $itemtagfield
800 && $subfieldcode ne $itemtagsubfield));
801 $witness{$subfieldcode} = $tagslib->{$field->tag()}->{$subfieldcode}->{lib} if ($tagslib->{$field->tag()}->{$subfieldcode}->{tab} eq 10);
802 if ($tagslib->{$field->tag()}->{$subfieldcode}->{tab} eq 10) {
803 $this_row{$subfieldcode} .= " | " if($this_row{$subfieldcode});
804 $this_row{$subfieldcode} .= GetAuthorisedValueDesc( $field->tag(),
805 $subfieldcode, $subfieldvalue, '', $tagslib)
806 || $subfieldvalue;
809 if (($field->tag eq $branchtagfield) && ($subfieldcode eq $branchtagsubfield) && C4::Context->preference("IndependentBranches")) {
810 #verifying rights
811 my $userenv = C4::Context->userenv();
812 unless (C4::Context->IsSuperLibrarian() or (($userenv->{'branch'} eq $subfieldvalue))){
813 $this_row{'nomod'} = 1;
816 $this_row{itemnumber} = $subfieldvalue if ($field->tag() eq $itemtagfield && $subfieldcode eq $itemtagsubfield);
818 if ( C4::Context->preference('EasyAnalyticalRecords') ) {
819 foreach my $hostitemnumber (@hostitemnumbers) {
820 my $item = Koha::Items->find( $hostitemnumber );
821 if ($this_row{itemnumber} eq $hostitemnumber) {
822 $this_row{hostitemflag} = 1;
823 $this_row{hostbiblionumber}= $item->biblio->biblionumber;
824 last;
829 if (%this_row) {
830 push(@big_array, \%this_row);
834 my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField( "items.holdingbranch" );
835 @big_array = sort {$a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf}} @big_array;
837 # now, construct template !
838 # First, the existing items for display
839 my @item_value_loop;
840 my @header_value_loop;
841 for my $row ( @big_array ) {
842 my %row_data;
843 my @item_fields = map +{ field => $_ || '' }, @$row{ sort keys(%witness) };
844 $row_data{item_value} = [ @item_fields ];
845 $row_data{itemnumber} = $row->{itemnumber};
846 #reporting this_row values
847 $row_data{'nomod'} = $row->{'nomod'};
848 $row_data{'hostitemflag'} = $row->{'hostitemflag'};
849 $row_data{'hostbiblionumber'} = $row->{'hostbiblionumber'};
850 # $row_data{'countanalytics'} = $row->{'countanalytics'};
851 push(@item_value_loop,\%row_data);
853 foreach my $subfield_code (sort keys(%witness)) {
854 my %header_value;
855 $header_value{header_value} = $witness{$subfield_code};
857 my $subfieldlib = $tagslib->{$itemtagfield}->{$subfield_code};
858 my $kohafield = $subfieldlib->{kohafield};
859 if ( $kohafield && $kohafield =~ /items.(.+)/ ) {
860 $header_value{column_name} = $1;
863 push(@header_value_loop, \%header_value);
866 # now, build the item form for entering a new item
867 my @loop_data =();
868 my $i=0;
870 my $pref_itemcallnumber = C4::Context->preference('itemcallnumber');
872 my $branch = $input->param('branch') || C4::Context->userenv->{branch};
873 my $libraries = Koha::Libraries->search({}, { order_by => ['branchname'] })->unblessed;# build once ahead of time, instead of multiple times later.
874 for my $library ( @$libraries ) {
875 $library->{selected} = 1 if $library->{branchcode} eq $branch
878 # We generate form, from actuel record
879 @fields = ();
880 if($itemrecord){
881 foreach my $field ($itemrecord->fields()){
882 my $tag = $field->{_tag};
883 foreach my $subfield ( $field->subfields() ){
885 my $subfieldtag = $subfield->[0];
886 my $value = $subfield->[1];
887 my $subfieldlib = $tagslib->{$tag}->{$subfieldtag};
889 next if ($tagslib->{$tag}->{$subfieldtag}->{'tab'} ne "10");
891 my $subfield_data = generate_subfield_form($tag, $subfieldtag, $value, $tagslib, $subfieldlib, $libraries, $biblionumber, $temp, \@loop_data, $i, $restrictededition);
892 push @fields, "$tag$subfieldtag";
893 push (@loop_data, $subfield_data);
894 $i++;
899 # and now we add fields that are empty
901 # Using last created item if it exists
903 $itemrecord = $cookieitemrecord if ($prefillitem and not $justaddeditem and $op ne "edititem");
905 # We generate form, and fill with values if defined
906 foreach my $tag ( keys %{$tagslib}){
907 foreach my $subtag (keys %{$tagslib->{$tag}}){
908 next if IsMarcStructureInternal($tagslib->{$tag}{$subtag});
909 next if ($tagslib->{$tag}->{$subtag}->{'tab'} ne "10");
910 next if any { /^$tag$subtag$/ } @fields;
912 my @values = (undef);
913 @values = $itemrecord->field($tag)->subfield($subtag) if ($itemrecord && defined($itemrecord->field($tag)) && defined($itemrecord->field($tag)->subfield($subtag)));
914 for my $value (@values){
915 my $subfield_data = generate_subfield_form($tag, $subtag, $value, $tagslib, $tagslib->{$tag}->{$subtag}, $libraries, $biblionumber, $temp, \@loop_data, $i, $restrictededition);
916 push (@loop_data, $subfield_data);
917 $i++;
921 @loop_data = sort {$a->{subfield} cmp $b->{subfield} } @loop_data;
923 my $item = Koha::Items->find($itemnumber); # We certainly want to fetch it earlier
925 # what's the next op ? it's what we are not in : an add if we're editing, otherwise, and edit.
926 $template->param(
927 biblionumber => $biblionumber,
928 title => $oldrecord->{title},
929 author => $oldrecord->{author},
930 item_loop => \@item_value_loop,
931 item_header_loop => \@header_value_loop,
932 item => \@loop_data,
933 itemnumber => $itemnumber,
934 barcode => $item ? $item->barcode : undef,
935 itemtagfield => $itemtagfield,
936 itemtagsubfield => $itemtagsubfield,
937 op => $nextop,
938 popup => scalar $input->param('popup') ? 1: 0,
939 C4::Search::enabled_staff_search_views,
941 $template->{'VARS'}->{'searchid'} = $searchid;
943 if ($frameworkcode eq 'FA'){
944 # fast cataloguing datas
945 $template->param(
946 'circborrowernumber' => $fa_circborrowernumber,
947 'barcode' => $fa_barcode,
948 'branch' => $fa_branch,
949 'stickyduedate' => $fa_stickyduedate,
950 'duedatespec' => $fa_duedatespec,
954 foreach my $error (@errors) {
955 $template->param($error => 1);
957 output_html_with_http_headers $input, $cookie, $template->output;