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>.
23 #use warnings; FIXME - Bug 2505
31 use C4
::Koha
; # XXX subfield_is_koha_internal_p
32 use C4
::Branch
; # XXX subfield_is_koha_internal_p
35 use List
::MoreUtils qw
/any/;
37 use Storable
qw(thaw freeze);
44 our $dbh = C4
::Context
->dbh;
47 my ($tagfield,$insubfield,$record) = @_;
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);
59 return($indicator,$result);
62 sub get_item_from_barcode
{
64 my $dbh=C4
::Context
->dbh;
66 my $rq=$dbh->prepare("SELECT itemnumber from items where items.barcode=?");
67 $rq->execute($barcode);
68 ($result)=$rq->fetchrow;
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);
81 $item->{'permanent_location'} = $item->{'location'} if !defined($item->{'permanent_location'});
82 ModItem
( $item, undef, $itemnumber);
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;
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);
106 sub generate_subfield_form
{
107 my ($tag, $subfieldtag, $value, $tagslib,$subfieldlib, $branches, $biblionumber, $temp, $loop_data, $i, $restrictededition) = @_;
109 my $frameworkcode = &GetFrameworkCode
($biblionumber);
112 my $dbh = C4
::Context
->dbh;
114 my $index_subfield = int(rand(1000000));
115 if ($subfieldtag eq '@'){
116 $subfield_data{id
} = "tag_".$tag."_subfield_00_".$index_subfield;
118 $subfield_data{id
} = "tag_".$tag."_subfield_".$subfieldtag."_".$index_subfield;
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
};
128 $value =~ s/"/"/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;
139 $subfield_data{visibility
} = "display:none;" if (($subfieldlib->{hidden
} > 4) || ($subfieldlib->{hidden
} <= -4));
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);
148 $value = ($temp2->subfield($CNsubfield)).' '.($temp2->subfield($CNsubfield2));
149 #remove any trailing space incase one subfield is used
150 $value =~ s/^\s+|\s+$//g;
154 if ($frameworkcode eq 'FA' && $subfieldlib->{kohafield
} eq 'items.barcode' && !$value){
156 $value = $input->param('barcode');
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
||
165 my @subfieldsToAllow = split(/ /, $subfieldsToAllowForRestrictedEditing);
167 if ( $subfieldlib->{authorised_value
} ) {
168 my @authorised_values;
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;
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
};
187 my $itype_sth = $dbh->prepare("SELECT itemtype FROM biblioitems WHERE biblionumber = ?");
188 $itype_sth->execute( $biblionumber );
189 ( $value ) = $itype_sth->fetchrow_array;
194 elsif ( $subfieldlib->{authorised_value
} eq "cn_source" ) {
195 push @authorised_values, "" unless ( $subfieldlib->{mandatory
} );
197 my $class_sources = GetClassSources
();
198 my $default_source = C4
::Context
->preference("DefaultClassificationSource");
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'};
207 $value = $default_source unless ($value);
209 #---- "true" authorised value
212 push @authorised_values, qq{} unless ( $subfieldlib->{mandatory
} );
213 my $av = GetAuthorisedValues
( $subfieldlib->{authorised_value
} );
215 push @authorised_values, $r->{authorised_value
};
216 $authorised_lib{$r->{authorised_value
}} = $r->{lib
};
220 if ( $subfieldlib->{hidden
} > 4 or $subfieldlib->{hidden
} <= -4 ) {
221 $subfield_data{marc_value
} = {
223 id
=> $subfield_data{id
},
224 maxlength
=> $subfield_data{max_length
},
229 $subfield_data{marc_value
} = {
231 id
=> "tag_".$tag."_subfield_".$subfieldtag."_".$index_subfield,
232 values => \
@authorised_values,
233 labels
=> \
%authorised_lib,
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
245 # it's a thesaurus / authority field
246 elsif ( $subfieldlib->{authtypecode
} ) {
247 $subfield_data{marc_value
} = {
249 id
=> $subfield_data{id
},
250 maxlength
=> $subfield_data{max_length
},
252 authtypecode
=> $subfieldlib->{authtypecode
},
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'},
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
},
273 nopopup
=> $plugin->noclick,
274 javascript
=> $plugin->javascript,
277 warn $plugin->errstr;
278 $subfield_data{marc_value
} = {
280 id
=> $subfield_data{id
},
281 maxlength
=> $subfield_data{max_length
},
283 }; # supply default input form
286 elsif ( $tag eq '' ) { # it's an hidden field
287 $subfield_data{marc_value
} = {
289 id
=> $subfield_data{id
},
290 maxlength
=> $subfield_data{max_length
},
294 elsif ( $subfieldlib->{'hidden'} ) { # FIXME: shouldn't input type be "hidden" ?
295 $subfield_data{marc_value
} = {
297 id
=> $subfield_data{id
},
298 maxlength
=> $subfield_data{max_length
},
305 C4
::Context
->preference("marcflavour") eq "UNIMARC"
306 and 300 <= $tag && $tag < 400 && $subfieldtag eq 'a'
309 C4
::Context
->preference("marcflavour") eq "MARC21"
310 and 500 <= $tag && $tag < 600
313 # oversize field (textarea)
314 $subfield_data{marc_value
} = {
316 id
=> $subfield_data{id
},
320 # it's a standard field
321 $subfield_data{marc_value
} = {
323 id
=> $subfield_data{id
},
324 maxlength
=> $subfield_data{max_length
},
329 return \
%subfield_data;
332 # Removes some subfields when prefilling items
333 # This function will remove any subfield that is not in the SubfieldsToUseWhenPrefill syspref
334 sub removeFieldsForPrefill
{
339 my ($tag, $subtag) = GetMarcFromKohaField
("items.barcode", '');
341 # Getting list of subfields to keep
342 my $subfieldsToUseWhenPrefill = C4
::Context
->preference('SubfieldsToUseWhenPrefill');
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]);
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');
375 my $frameworkcode = &GetFrameworkCode
($biblionumber);
377 # Defining which userflag is needing according to the framework currently used
379 if (defined $input->param('frameworkcode')) {
380 $userflags = ($input->param('frameworkcode') eq 'FA') ?
"fast_cataloging" : "edit_items";
383 if (not defined $userflags) {
384 $userflags = ($frameworkcode eq 'FA') ?
"fast_cataloging" : "edit_items";
387 my ($template, $loggedinuser, $cookie)
388 = get_template_and_user
({template_name
=> "cataloguing/additem.tt",
391 authnotrequired
=> 0,
392 flagsrequired
=> {editcatalogue
=> $userflags},
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'}));
405 my $tagslib = &GetMarcStructure
(1,$frameworkcode);
406 my $record = GetMarcBiblio
($biblionumber);
407 my $oldrecord = TransformMarcToKoha
($dbh,$record);
409 my $nextop="additem";
410 my @errors; # store errors found while checking data BEFORE saving item.
412 # Getting last created item cookie
413 my $prefillitem = C4
::Context
->preference('PrefillItem');
415 my $cookieitemrecord;
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);
427 #-------------------------------------------------------------------------------
428 if ($op eq "additem") {
430 #-------------------------------------------------------------------------------
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');
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');
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
452 $add_duplicate_submit = 1 if ($prefillitem);
455 # if autoBarcode is set to 'incremental', calculate barcode...
456 if ( C4
::Context
->preference('autoBarcode') eq 'incremental' ) {
457 $record = _increment_barcode
($record, $frameworkcode);
460 my $addedolditem = TransformMarcToKoha
( $dbh, $record );
462 # If we have to add or add & duplicate, we add the item
463 if ( $add_submit || $add_duplicate_submit ) {
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);
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);
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 ) ),
484 $cookie = [ $cookie, $itemcookie ];
489 if ($exist_itemnumber) {
490 $itemrecord = $record;
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);
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);
508 $itemrecord = removeFieldsForPrefill
($itemrecord) if ($prefillitem);
511 # If we have to add multiple copies
512 if ($add_multiple_copies_submit) {
515 my $barcodeobj = C4
::Barcodes
->new;
516 my $oldbarcode = $addedolditem->{'barcode'};
517 my ($tagfield,$tagsubfield) = &GetMarcFromKohaField
("items.barcode",$frameworkcode);
519 # If there is a barcode and we can't find him new values, we can't add multiple copies
521 $testbarcode = $barcodeobj->next_value($oldbarcode) if $barcodeobj;
522 if ($oldbarcode && !$testbarcode) {
524 push @errors, "no_next_barcode";
525 $itemrecord = $record;
530 # For the first iteration
531 my $barcodevalue = $oldbarcode;
532 my $exist_itemnumber;
535 for (my $i = 0; $i < $number_of_copies;) {
537 # If there is a barcode
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);
543 # Putting it into the record
545 $record->field($tagfield)->update($tagsubfield => $barcodevalue);
548 # Checking if the barcode already exists
549 $exist_itemnumber = get_item_from_barcode
($barcodevalue);
553 if (!$exist_itemnumber) {
554 my ($oldbiblionumber,$oldbibnum,$oldbibitemnum) = AddItemFromMarc
($record,$biblionumber);
555 set_item_default_location
($oldbibitemnum);
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
563 # Preparing the next iteration
564 $oldbarcode = $barcodevalue;
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
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);
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);
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 (subfield_is_koha_internal_p
($subfieldtag) || $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);
619 $itemrecord = removeFieldsForPrefill
($itemrecord) if ($prefillitem);
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);
627 print $input->redirect("additem.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode&searchid=$searchid");
632 #-------------------------------------------------------------------------------
633 } elsif ($op eq "delallitems") {
634 #-------------------------------------------------------------------------------
635 my @biblioitems = &GetBiblioItemByBiblioNumber
($biblionumber);
638 foreach my $biblioitem (@biblioitems) {
639 my $items = &GetItemsByBiblioitemnumber
( $biblioitem->{biblioitemnumber
} );
641 foreach my $item (@
$items) {
642 $error =&DelItemCheck
( $dbh, $biblionumber, $item->{itemnumber
} );
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");
665 print $input->redirect("/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber&searchid=$searchid");
670 #-------------------------------------------------------------------------------
671 } elsif ($op eq "saveitem") {
672 #-------------------------------------------------------------------------------
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
($dbh,$itemtosave);
687 my $exist_itemnumber = get_item_from_barcode
($addedolditem->{'barcode'});
688 if ($exist_itemnumber && $exist_itemnumber != $itemnumber) {
689 push @errors,"barcode_not_unique";
691 ModItemFromMarc
($itemtosave,$biblionumber,$itemnumber);
694 my $item = GetItem
( $itemnumber );
695 my $olditemlost = $item->{'itemlost'};
697 my ($lost_tag,$lost_subfield) = GetMarcFromKohaField
("items.itemlost",'');
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');
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';
711 foreach my $field ($record->field($analyticfield)){
712 if ($field->subfield('9') eq $hostitemnumber){
713 $record->delete_field($field);
717 my $modbibresult = ModBiblio
($record, $biblionumber,'');
721 #-------------------------------------------------------------------------------
722 # build screen with existing items. and "new" one
723 #-------------------------------------------------------------------------------
725 # now, build existiing item list
726 my $temp = GetMarcBiblio
( $biblionumber );
727 #my @fields = $record->fields();
730 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
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();
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';
747 foreach my $hostfield ($temp->field($analyticfield)){
748 my $hostbiblionumber = $hostfield->subfield('0');
749 if ($hostbiblionumber){
750 my $hostrecord = GetMarcBiblio
($hostbiblionumber, 1);
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'));
765 foreach my $field (@fields) {
766 next if ( $field->tag() < 10 );
768 my @subf = $field->subfields or (); # don't use ||, as that forces $field->subfelds to be interpreted in scalar context
770 # loop through each subfield
772 foreach my $subfield (@subf){
773 my $subfieldcode = $subfield->[0];
774 my $subfieldvalue= $subfield->[1];
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)
787 if (($field->tag eq $branchtagfield) && ($subfieldcode eq $branchtagsubfield) && C4
::Context
->preference("IndependentBranches")) {
789 my $userenv = C4
::Context
->userenv();
790 unless (C4
::Context
->IsSuperLibrarian() or (($userenv->{'branch'} eq $subfieldvalue))){
791 $this_row{'nomod'} = 1;
794 $this_row{itemnumber
} = $subfieldvalue if ($field->tag() eq $itemtagfield && $subfieldcode eq $itemtagsubfield);
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);
805 # my $countanalytics=GetAnalyticsCount($this_row{itemnumber});
806 # if ($countanalytics > 0){
807 # $this_row{countanalytics} = $countanalytics;
813 push(@big_array, \
%this_row);
817 my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField
("items.holdingbranch",$frameworkcode);
818 @big_array = sort {$a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf}} @big_array;
820 # now, construct template !
821 # First, the existing items for display
823 my @header_value_loop;
824 for my $row ( @big_array ) {
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);
836 foreach my $subfield_code (sort keys(%witness)) {
838 $header_value{header_value
} = $witness{$subfield_code};
840 my $subfieldlib = $tagslib->{$itemtagfield}->{$subfield_code};
841 my $kohafield = $subfieldlib->{kohafield
};
842 if ( $kohafield && $kohafield =~ /items.(.+)/ ) {
843 $header_value{column_name
} = $1;
846 push(@header_value_loop, \
%header_value);
849 # now, build the item form for entering a new item
853 my $pref_itemcallnumber = C4
::Context
->preference('itemcallnumber');
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.
863 # We generate form, from actuel record
866 foreach my $field ($itemrecord->fields()){
867 my $tag = $field->{_tag
};
868 foreach my $subfield ( $field->subfields() ){
870 my $subfieldtag = $subfield->[0];
871 my $value = $subfield->[1];
872 my $subfieldlib = $tagslib->{$tag}->{$subfieldtag};
874 next if subfield_is_koha_internal_p
($subfieldtag);
875 next if ($tagslib->{$tag}->{$subfieldtag}->{'tab'} ne "10");
877 my $subfield_data = generate_subfield_form
($tag, $subfieldtag, $value, $tagslib, $subfieldlib, $branches, $biblionumber, $temp, \
@loop_data, $i, $restrictededition);
878 push @fields, "$tag$subfieldtag";
879 push (@loop_data, $subfield_data);
885 # and now we add fields that are empty
887 # Using last created item if it exists
889 $itemrecord = $cookieitemrecord if ($prefillitem and not $justaddeditem and $op ne "edititem");
891 # We generate form, and fill with values if defined
892 foreach my $tag ( keys %{$tagslib}){
893 foreach my $subtag (keys %{$tagslib->{$tag}}){
894 next if subfield_is_koha_internal_p
($subtag);
895 next if ($tagslib->{$tag}->{$subtag}->{'tab'} ne "10");
896 next if any
{ /^$tag$subtag$/ } @fields;
898 my @values = (undef);
899 @values = $itemrecord->field($tag)->subfield($subtag) if ($itemrecord && defined($itemrecord->field($tag)) && defined($itemrecord->field($tag)->subfield($subtag)));
900 for my $value (@values){
901 my $subfield_data = generate_subfield_form
($tag, $subtag, $value, $tagslib, $tagslib->{$tag}->{$subtag}, $branches, $biblionumber, $temp, \
@loop_data, $i, $restrictededition);
902 push (@loop_data, $subfield_data);
907 @loop_data = sort {$a->{subfield
} cmp $b->{subfield
} } @loop_data;
909 # what's the next op ? it's what we are not in : an add if we're editing, otherwise, and edit.
911 biblionumber
=> $biblionumber,
912 title
=> $oldrecord->{title
},
913 author
=> $oldrecord->{author
},
914 item_loop
=> \
@item_value_loop,
915 item_header_loop
=> \
@header_value_loop,
917 itemnumber
=> $itemnumber,
918 barcode
=> GetBarcodeFromItemnumber
($itemnumber),
919 itemtagfield
=> $itemtagfield,
920 itemtagsubfield
=> $itemtagsubfield,
922 opisadd
=> ($nextop eq "saveitem") ?
0 : 1,
923 popup
=> $input->param('popup') ?
1: 0,
924 C4
::Search
::enabled_staff_search_views
,
926 $template->{'VARS'}->{'searchid'} = $searchid;
928 if ($frameworkcode eq 'FA'){
929 # fast cataloguing datas
931 'circborrowernumber' => $fa_circborrowernumber,
932 'barcode' => $fa_barcode,
933 'branch' => $fa_branch,
934 'stickyduedate' => $fa_stickyduedate,
935 'duedatespec' => $fa_duedatespec,
939 foreach my $error (@errors) {
940 $template->param($error => 1);
942 output_html_with_http_headers
$input, $cookie, $template->output;