Bug 22565: Do NOT replace all internalnote's on receive
[koha.git] / C4 / Items.pm
blobe0cc72f690df9746a823eb9f4ddc3296ae391859
1 package C4::Items;
3 # Copyright 2007 LibLime, Inc.
4 # Parts Copyright Biblibre 2010
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use strict;
22 #use warnings; FIXME - Bug 2505
24 use vars qw(@ISA @EXPORT);
25 BEGIN {
26 require Exporter;
27 @ISA = qw(Exporter);
29 @EXPORT = qw(
30 GetItem
31 AddItemFromMarc
32 AddItem
33 AddItemBatchFromMarc
34 ModItemFromMarc
35 Item2Marc
36 ModItem
37 ModDateLastSeen
38 ModItemTransfer
39 DelItem
40 CheckItemPreSave
41 GetItemsForInventory
42 GetItemsInfo
43 GetItemsLocationInfo
44 GetHostItemsInfo
45 get_hostitemnumbers_of
46 GetHiddenItemnumbers
47 ItemSafeToDelete
48 DelItemCheck
49 MoveItemFromBiblio
50 CartToShelf
51 ShelfToCart
52 GetAnalyticsCount
53 SearchItemsByField
54 SearchItems
55 PrepareItemrecordDisplay
59 use Carp;
60 use C4::Context;
61 use C4::Koha;
62 use C4::Biblio;
63 use Koha::DateUtils;
64 use MARC::Record;
65 use C4::ClassSource;
66 use C4::Log;
67 use List::MoreUtils qw(any);
68 use YAML qw(Load);
69 use DateTime::Format::MySQL;
70 use Data::Dumper; # used as part of logging item record changes, not just for
71 # debugging; so please don't remove this
73 use Koha::AuthorisedValues;
74 use Koha::DateUtils qw(dt_from_string);
75 use Koha::Database;
77 use Koha::Biblioitems;
78 use Koha::Items;
79 use Koha::ItemTypes;
80 use Koha::SearchEngine;
81 use Koha::SearchEngine::Search;
82 use Koha::Libraries;
84 =head1 NAME
86 C4::Items - item management functions
88 =head1 DESCRIPTION
90 This module contains an API for manipulating item
91 records in Koha, and is used by cataloguing, circulation,
92 acquisitions, and serials management.
94 # FIXME This POD is not up-to-date
95 A Koha item record is stored in two places: the
96 items table and embedded in a MARC tag in the XML
97 version of the associated bib record in C<biblioitems.marcxml>.
98 This is done to allow the item information to be readily
99 indexed (e.g., by Zebra), but means that each item
100 modification transaction must keep the items table
101 and the MARC XML in sync at all times.
103 Consequently, all code that creates, modifies, or deletes
104 item records B<must> use an appropriate function from
105 C<C4::Items>. If no existing function is suitable, it is
106 better to add one to C<C4::Items> than to use add
107 one-off SQL statements to add or modify items.
109 The items table will be considered authoritative. In other
110 words, if there is ever a discrepancy between the items
111 table and the MARC XML, the items table should be considered
112 accurate.
114 =head1 HISTORICAL NOTE
116 Most of the functions in C<C4::Items> were originally in
117 the C<C4::Biblio> module.
119 =head1 CORE EXPORTED FUNCTIONS
121 The following functions are meant for use by users
122 of C<C4::Items>
124 =cut
126 =head2 GetItem
128 $item = GetItem($itemnumber,$barcode,$serial);
130 Return item information, for a given itemnumber or barcode.
131 The return value is a hashref mapping item column
132 names to values. If C<$serial> is true, include serial publication data.
134 =cut
136 sub GetItem {
137 my ($itemnumber,$barcode, $serial) = @_;
138 my $dbh = C4::Context->dbh;
140 my $item;
141 if ($itemnumber) {
142 $item = Koha::Items->find( $itemnumber );
143 } else {
144 $item = Koha::Items->find( { barcode => $barcode } );
147 return unless ( $item );
149 my $data = $item->unblessed();
150 $data->{itype} = $item->effective_itemtype(); # set the correct itype
152 if ($serial) {
153 my $ssth = $dbh->prepare("SELECT serialseq,publisheddate from serialitems left join serial on serialitems.serialid=serial.serialid where serialitems.itemnumber=?");
154 $ssth->execute( $data->{'itemnumber'} );
155 ( $data->{'serialseq'}, $data->{'publisheddate'} ) = $ssth->fetchrow_array();
158 return $data;
159 } # sub GetItem
161 =head2 CartToShelf
163 CartToShelf($itemnumber);
165 Set the current shelving location of the item record
166 to its stored permanent shelving location. This is
167 primarily used to indicate when an item whose current
168 location is a special processing ('PROC') or shelving cart
169 ('CART') location is back in the stacks.
171 =cut
173 sub CartToShelf {
174 my ( $itemnumber ) = @_;
176 unless ( $itemnumber ) {
177 croak "FAILED CartToShelf() - no itemnumber supplied";
180 my $item = GetItem($itemnumber);
181 if ( $item->{location} eq 'CART' ) {
182 $item->{location} = $item->{permanent_location};
183 ModItem($item, undef, $itemnumber);
187 =head2 ShelfToCart
189 ShelfToCart($itemnumber);
191 Set the current shelving location of the item
192 to shelving cart ('CART').
194 =cut
196 sub ShelfToCart {
197 my ( $itemnumber ) = @_;
199 unless ( $itemnumber ) {
200 croak "FAILED ShelfToCart() - no itemnumber supplied";
203 my $item = GetItem($itemnumber);
204 $item->{'location'} = 'CART';
205 ModItem($item, undef, $itemnumber);
208 =head2 AddItemFromMarc
210 my ($biblionumber, $biblioitemnumber, $itemnumber)
211 = AddItemFromMarc($source_item_marc, $biblionumber);
213 Given a MARC::Record object containing an embedded item
214 record and a biblionumber, create a new item record.
216 =cut
218 sub AddItemFromMarc {
219 my ( $source_item_marc, $biblionumber ) = @_;
220 my $dbh = C4::Context->dbh;
222 # parse item hash from MARC
223 my $frameworkcode = C4::Biblio::GetFrameworkCode($biblionumber);
224 my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber", $frameworkcode );
226 my $localitemmarc = MARC::Record->new;
227 $localitemmarc->append_fields( $source_item_marc->field($itemtag) );
228 my $item = C4::Biblio::TransformMarcToKoha( $localitemmarc, $frameworkcode, 'items' );
229 my $unlinked_item_subfields = _get_unlinked_item_subfields( $localitemmarc, $frameworkcode );
230 return AddItem( $item, $biblionumber, $dbh, $frameworkcode, $unlinked_item_subfields );
233 =head2 AddItem
235 my ($biblionumber, $biblioitemnumber, $itemnumber)
236 = AddItem($item, $biblionumber[, $dbh, $frameworkcode, $unlinked_item_subfields]);
238 Given a hash containing item column names as keys,
239 create a new Koha item record.
241 The first two optional parameters (C<$dbh> and C<$frameworkcode>)
242 do not need to be supplied for general use; they exist
243 simply to allow them to be picked up from AddItemFromMarc.
245 The final optional parameter, C<$unlinked_item_subfields>, contains
246 an arrayref containing subfields present in the original MARC
247 representation of the item (e.g., from the item editor) that are
248 not mapped to C<items> columns directly but should instead
249 be stored in C<items.more_subfields_xml> and included in
250 the biblio items tag for display and indexing.
252 =cut
254 sub AddItem {
255 my $item = shift;
256 my $biblionumber = shift;
258 my $dbh = @_ ? shift : C4::Context->dbh;
259 my $frameworkcode = @_ ? shift : C4::Biblio::GetFrameworkCode($biblionumber);
260 my $unlinked_item_subfields;
261 if (@_) {
262 $unlinked_item_subfields = shift;
265 # needs old biblionumber and biblioitemnumber
266 $item->{'biblionumber'} = $biblionumber;
267 my $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=?");
268 $sth->execute( $item->{'biblionumber'} );
269 ( $item->{'biblioitemnumber'} ) = $sth->fetchrow;
271 _set_defaults_for_add($item);
272 _set_derived_columns_for_add($item);
273 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
275 # FIXME - checks here
276 unless ( $item->{itype} ) { # default to biblioitem.itemtype if no itype
277 my $itype_sth = $dbh->prepare("SELECT itemtype FROM biblioitems WHERE biblionumber = ?");
278 $itype_sth->execute( $item->{'biblionumber'} );
279 ( $item->{'itype'} ) = $itype_sth->fetchrow_array;
282 my ( $itemnumber, $error ) = _koha_new_item( $item, $item->{barcode} );
283 return if $error;
285 $item->{'itemnumber'} = $itemnumber;
287 C4::Biblio::ModZebra( $item->{biblionumber}, "specialUpdate", "biblioserver" );
289 logaction( "CATALOGUING", "ADD", $itemnumber, "item" )
290 if C4::Context->preference("CataloguingLog");
292 return ( $item->{biblionumber}, $item->{biblioitemnumber}, $itemnumber );
295 =head2 AddItemBatchFromMarc
297 ($itemnumber_ref, $error_ref) = AddItemBatchFromMarc($record,
298 $biblionumber, $biblioitemnumber, $frameworkcode);
300 Efficiently create item records from a MARC biblio record with
301 embedded item fields. This routine is suitable for batch jobs.
303 This API assumes that the bib record has already been
304 saved to the C<biblio> and C<biblioitems> tables. It does
305 not expect that C<biblio_metadata.metadata> is populated, but it
306 will do so via a call to ModBibiloMarc.
308 The goal of this API is to have a similar effect to using AddBiblio
309 and AddItems in succession, but without inefficient repeated
310 parsing of the MARC XML bib record.
312 This function returns an arrayref of new itemsnumbers and an arrayref of item
313 errors encountered during the processing. Each entry in the errors
314 list is a hashref containing the following keys:
316 =over
318 =item item_sequence
320 Sequence number of original item tag in the MARC record.
322 =item item_barcode
324 Item barcode, provide to assist in the construction of
325 useful error messages.
327 =item error_code
329 Code representing the error condition. Can be 'duplicate_barcode',
330 'invalid_homebranch', or 'invalid_holdingbranch'.
332 =item error_information
334 Additional information appropriate to the error condition.
336 =back
338 =cut
340 sub AddItemBatchFromMarc {
341 my ($record, $biblionumber, $biblioitemnumber, $frameworkcode) = @_;
342 my $error;
343 my @itemnumbers = ();
344 my @errors = ();
345 my $dbh = C4::Context->dbh;
347 # We modify the record, so lets work on a clone so we don't change the
348 # original.
349 $record = $record->clone();
350 # loop through the item tags and start creating items
351 my @bad_item_fields = ();
352 my ($itemtag, $itemsubfield) = C4::Biblio::GetMarcFromKohaField("items.itemnumber",'');
353 my $item_sequence_num = 0;
354 ITEMFIELD: foreach my $item_field ($record->field($itemtag)) {
355 $item_sequence_num++;
356 # we take the item field and stick it into a new
357 # MARC record -- this is required so far because (FIXME)
358 # TransformMarcToKoha requires a MARC::Record, not a MARC::Field
359 # and there is no TransformMarcFieldToKoha
360 my $temp_item_marc = MARC::Record->new();
361 $temp_item_marc->append_fields($item_field);
363 # add biblionumber and biblioitemnumber
364 my $item = TransformMarcToKoha( $temp_item_marc, $frameworkcode, 'items' );
365 my $unlinked_item_subfields = _get_unlinked_item_subfields($temp_item_marc, $frameworkcode);
366 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
367 $item->{'biblionumber'} = $biblionumber;
368 $item->{'biblioitemnumber'} = $biblioitemnumber;
370 # check for duplicate barcode
371 my %item_errors = CheckItemPreSave($item);
372 if (%item_errors) {
373 push @errors, _repack_item_errors($item_sequence_num, $item, \%item_errors);
374 push @bad_item_fields, $item_field;
375 next ITEMFIELD;
378 _set_defaults_for_add($item);
379 _set_derived_columns_for_add($item);
380 my ( $itemnumber, $error ) = _koha_new_item( $item, $item->{barcode} );
381 warn $error if $error;
382 push @itemnumbers, $itemnumber; # FIXME not checking error
383 $item->{'itemnumber'} = $itemnumber;
385 logaction("CATALOGUING", "ADD", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
387 my $new_item_marc = _marc_from_item_hash($item, $frameworkcode, $unlinked_item_subfields);
388 $item_field->replace_with($new_item_marc->field($itemtag));
391 # remove any MARC item fields for rejected items
392 foreach my $item_field (@bad_item_fields) {
393 $record->delete_field($item_field);
396 # update the MARC biblio
397 # $biblionumber = ModBiblioMarc( $record, $biblionumber, $frameworkcode );
399 return (\@itemnumbers, \@errors);
402 =head2 ModItemFromMarc
404 ModItemFromMarc($item_marc, $biblionumber, $itemnumber);
406 This function updates an item record based on a supplied
407 C<MARC::Record> object containing an embedded item field.
408 This API is meant for the use of C<additem.pl>; for
409 other purposes, C<ModItem> should be used.
411 This function uses the hash %default_values_for_mod_from_marc,
412 which contains default values for item fields to
413 apply when modifying an item. This is needed because
414 if an item field's value is cleared, TransformMarcToKoha
415 does not include the column in the
416 hash that's passed to ModItem, which without
417 use of this hash makes it impossible to clear
418 an item field's value. See bug 2466.
420 Note that only columns that can be directly
421 changed from the cataloging and serials
422 item editors are included in this hash.
424 Returns item record
426 =cut
428 sub _build_default_values_for_mod_marc {
429 # Has no framework parameter anymore, since Default is authoritative
430 # for Koha to MARC mappings.
432 my $cache = Koha::Caches->get_instance();
433 my $cache_key = "default_value_for_mod_marc-";
434 my $cached = $cache->get_from_cache($cache_key);
435 return $cached if $cached;
437 my $default_values = {
438 barcode => undef,
439 booksellerid => undef,
440 ccode => undef,
441 'items.cn_source' => undef,
442 coded_location_qualifier => undef,
443 copynumber => undef,
444 damaged => 0,
445 enumchron => undef,
446 holdingbranch => undef,
447 homebranch => undef,
448 itemcallnumber => undef,
449 itemlost => 0,
450 itemnotes => undef,
451 itemnotes_nonpublic => undef,
452 itype => undef,
453 location => undef,
454 permanent_location => undef,
455 materials => undef,
456 new_status => undef,
457 notforloan => 0,
458 # paidfor => undef, # commented, see bug 12817
459 price => undef,
460 replacementprice => undef,
461 replacementpricedate => undef,
462 restricted => undef,
463 stack => undef,
464 stocknumber => undef,
465 uri => undef,
466 withdrawn => 0,
468 my %default_values_for_mod_from_marc;
469 while ( my ( $field, $default_value ) = each %$default_values ) {
470 my $kohafield = $field;
471 $kohafield =~ s|^([^\.]+)$|items.$1|;
472 $default_values_for_mod_from_marc{$field} = $default_value
473 if C4::Biblio::GetMarcFromKohaField( $kohafield );
476 $cache->set_in_cache($cache_key, \%default_values_for_mod_from_marc);
477 return \%default_values_for_mod_from_marc;
480 sub ModItemFromMarc {
481 my $item_marc = shift;
482 my $biblionumber = shift;
483 my $itemnumber = shift;
485 my $frameworkcode = C4::Biblio::GetFrameworkCode($biblionumber);
486 my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber", $frameworkcode );
488 my $localitemmarc = MARC::Record->new;
489 $localitemmarc->append_fields( $item_marc->field($itemtag) );
490 my $item = TransformMarcToKoha( $localitemmarc, $frameworkcode, 'items' );
491 my $default_values = _build_default_values_for_mod_marc();
492 foreach my $item_field ( keys %$default_values ) {
493 $item->{$item_field} = $default_values->{$item_field}
494 unless exists $item->{$item_field};
496 my $unlinked_item_subfields = _get_unlinked_item_subfields( $localitemmarc, $frameworkcode );
498 ModItem( $item, $biblionumber, $itemnumber, { unlinked_item_subfields => $unlinked_item_subfields } );
499 return $item;
502 =head2 ModItem
504 ModItem(
505 { column => $newvalue },
506 $biblionumber,
507 $itemnumber,
509 [ unlinked_item_subfields => $unlinked_item_subfields, ]
510 [ log_action => 1, ]
514 Change one or more columns in an item record.
516 The first argument is a hashref mapping from item column
517 names to the new values. The second and third arguments
518 are the biblionumber and itemnumber, respectively.
519 The fourth, optional parameter (additional_params) may contain the keys
520 unlinked_item_subfields and log_action.
522 C<$unlinked_item_subfields> contains an arrayref containing
523 subfields present in the original MARC
524 representation of the item (e.g., from the item editor) that are
525 not mapped to C<items> columns directly but should instead
526 be stored in C<items.more_subfields_xml> and included in
527 the biblio items tag for display and indexing.
529 If one of the changed columns is used to calculate
530 the derived value of a column such as C<items.cn_sort>,
531 this routine will perform the necessary calculation
532 and set the value.
534 If log_action is set to false, the action will not be logged.
535 If log_action is true or undefined, the action will be logged.
537 =cut
539 sub ModItem {
540 my ( $item, $biblionumber, $itemnumber, $additional_params ) = @_;
541 my $log_action = $additional_params->{log_action} // 1;
542 my $unlinked_item_subfields = $additional_params->{unlinked_item_subfields};
544 return unless %$item;
545 $item->{'itemnumber'} = $itemnumber or return;
547 # if $biblionumber is undefined, get it from the current item
548 unless (defined $biblionumber) {
549 $biblionumber = _get_single_item_column('biblionumber', $itemnumber);
552 if ($unlinked_item_subfields) {
553 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
556 my @fields = qw( itemlost withdrawn damaged );
558 # Only call GetItem if we need to set an "on" date field
559 if ( $item->{itemlost} || $item->{withdrawn} || $item->{damaged} ) {
560 my $pre_mod_item = GetItem( $item->{'itemnumber'} );
561 for my $field (@fields) {
562 if ( defined( $item->{$field} )
563 and not $pre_mod_item->{$field}
564 and $item->{$field} )
566 $item->{ $field . '_on' } =
567 DateTime::Format::MySQL->format_datetime( dt_from_string() );
572 # If the field is defined but empty, we are removing and,
573 # and thus need to clear out the 'on' field as well
574 for my $field (@fields) {
575 if ( defined( $item->{$field} ) && !$item->{$field} ) {
576 $item->{ $field . '_on' } = undef;
581 _set_derived_columns_for_mod($item);
582 _do_column_fixes_for_mod($item);
583 # FIXME add checks
584 # duplicate barcode
585 # attempt to change itemnumber
586 # attempt to change biblionumber (if we want
587 # an API to relink an item to a different bib,
588 # it should be a separate function)
590 # update items table
591 _koha_modify_item($item);
593 # request that bib be reindexed so that searching on current
594 # item status is possible
595 ModZebra( $biblionumber, "specialUpdate", "biblioserver" );
597 logaction( "CATALOGUING", "MODIFY", $itemnumber, "item " . Dumper($item) )
598 if $log_action && C4::Context->preference("CataloguingLog");
601 =head2 ModItemTransfer
603 ModItemTransfer($itenumber, $frombranch, $tobranch);
605 Marks an item as being transferred from one branch
606 to another.
608 =cut
610 sub ModItemTransfer {
611 my ( $itemnumber, $frombranch, $tobranch ) = @_;
613 my $dbh = C4::Context->dbh;
615 # Remove the 'shelving cart' location status if it is being used.
616 CartToShelf( $itemnumber ) if ( C4::Context->preference("ReturnToShelvingCart") );
618 $dbh->do("UPDATE branchtransfers SET datearrived = NOW(), comments = ? WHERE itemnumber = ? AND datearrived IS NULL", undef, "Canceled, new transfer from $frombranch to $tobranch created", $itemnumber);
620 #new entry in branchtransfers....
621 my $sth = $dbh->prepare(
622 "INSERT INTO branchtransfers (itemnumber, frombranch, datesent, tobranch)
623 VALUES (?, ?, NOW(), ?)");
624 $sth->execute($itemnumber, $frombranch, $tobranch);
626 ModItem({ holdingbranch => $tobranch }, undef, $itemnumber, { log_action => 0 });
627 ModDateLastSeen($itemnumber);
628 return;
631 =head2 ModDateLastSeen
633 ModDateLastSeen( $itemnumber, $leave_item_lost );
635 Mark item as seen. Is called when an item is issued, returned or manually marked during inventory/stocktaking.
636 C<$itemnumber> is the item number
637 C<$leave_item_lost> determines if a lost item will be found or remain lost
639 =cut
641 sub ModDateLastSeen {
642 my ( $itemnumber, $leave_item_lost ) = @_;
644 my $today = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
646 my $params;
647 $params->{datelastseen} = $today;
648 $params->{itemlost} = 0 unless $leave_item_lost;
650 ModItem( $params, undef, $itemnumber, { log_action => 0 } );
653 =head2 DelItem
655 DelItem({ itemnumber => $itemnumber, [ biblionumber => $biblionumber ] } );
657 Exported function (core API) for deleting an item record in Koha.
659 =cut
661 sub DelItem {
662 my ( $params ) = @_;
664 my $itemnumber = $params->{itemnumber};
665 my $biblionumber = $params->{biblionumber};
667 unless ($biblionumber) {
668 my $item = Koha::Items->find( $itemnumber );
669 $biblionumber = $item ? $item->biblio->biblionumber : undef;
672 # If there is no biblionumber for the given itemnumber, there is nothing to delete
673 return 0 unless $biblionumber;
675 # FIXME check the item has no current issues
676 my $deleted = _koha_delete_item( $itemnumber );
678 ModZebra( $biblionumber, "specialUpdate", "biblioserver" );
680 #search item field code
681 logaction("CATALOGUING", "DELETE", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
682 return $deleted;
685 =head2 CheckItemPreSave
687 my $item_ref = TransformMarcToKoha($marc, 'items');
688 # do stuff
689 my %errors = CheckItemPreSave($item_ref);
690 if (exists $errors{'duplicate_barcode'}) {
691 print "item has duplicate barcode: ", $errors{'duplicate_barcode'}, "\n";
692 } elsif (exists $errors{'invalid_homebranch'}) {
693 print "item has invalid home branch: ", $errors{'invalid_homebranch'}, "\n";
694 } elsif (exists $errors{'invalid_holdingbranch'}) {
695 print "item has invalid holding branch: ", $errors{'invalid_holdingbranch'}, "\n";
696 } else {
697 print "item is OK";
700 Given a hashref containing item fields, determine if it can be
701 inserted or updated in the database. Specifically, checks for
702 database integrity issues, and returns a hash containing any
703 of the following keys, if applicable.
705 =over 2
707 =item duplicate_barcode
709 Barcode, if it duplicates one already found in the database.
711 =item invalid_homebranch
713 Home branch, if not defined in branches table.
715 =item invalid_holdingbranch
717 Holding branch, if not defined in branches table.
719 =back
721 This function does NOT implement any policy-related checks,
722 e.g., whether current operator is allowed to save an
723 item that has a given branch code.
725 =cut
727 sub CheckItemPreSave {
728 my $item_ref = shift;
730 my %errors = ();
732 # check for duplicate barcode
733 if (exists $item_ref->{'barcode'} and defined $item_ref->{'barcode'}) {
734 my $existing_item= Koha::Items->find({barcode => $item_ref->{'barcode'}});
735 if ($existing_item) {
736 if (!exists $item_ref->{'itemnumber'} # new item
737 or $item_ref->{'itemnumber'} != $existing_item->itemnumber) { # existing item
738 $errors{'duplicate_barcode'} = $item_ref->{'barcode'};
743 # check for valid home branch
744 if (exists $item_ref->{'homebranch'} and defined $item_ref->{'homebranch'}) {
745 my $home_library = Koha::Libraries->find( $item_ref->{homebranch} );
746 unless (defined $home_library) {
747 $errors{'invalid_homebranch'} = $item_ref->{'homebranch'};
751 # check for valid holding branch
752 if (exists $item_ref->{'holdingbranch'} and defined $item_ref->{'holdingbranch'}) {
753 my $holding_library = Koha::Libraries->find( $item_ref->{holdingbranch} );
754 unless (defined $holding_library) {
755 $errors{'invalid_holdingbranch'} = $item_ref->{'holdingbranch'};
759 return %errors;
763 =head1 EXPORTED SPECIAL ACCESSOR FUNCTIONS
765 The following functions provide various ways of
766 getting an item record, a set of item records, or
767 lists of authorized values for certain item fields.
769 =cut
771 =head2 GetItemsForInventory
773 ($itemlist, $iTotalRecords) = GetItemsForInventory( {
774 minlocation => $minlocation,
775 maxlocation => $maxlocation,
776 location => $location,
777 itemtype => $itemtype,
778 ignoreissued => $ignoreissued,
779 datelastseen => $datelastseen,
780 branchcode => $branchcode,
781 branch => $branch,
782 offset => $offset,
783 size => $size,
784 statushash => $statushash,
785 } );
787 Retrieve a list of title/authors/barcode/callnumber, for biblio inventory.
789 The sub returns a reference to a list of hashes, each containing
790 itemnumber, author, title, barcode, item callnumber, and date last
791 seen. It is ordered by callnumber then title.
793 The required minlocation & maxlocation parameters are used to specify a range of item callnumbers
794 the datelastseen can be used to specify that you want to see items not seen since a past date only.
795 offset & size can be used to retrieve only a part of the whole listing (defaut behaviour)
796 $statushash requires a hashref that has the authorized values fieldname (intems.notforloan, etc...) as keys, and an arrayref of statuscodes we are searching for as values.
798 $iTotalRecords is the number of rows that would have been returned without the $offset, $size limit clause
800 =cut
802 sub GetItemsForInventory {
803 my ( $parameters ) = @_;
804 my $minlocation = $parameters->{'minlocation'} // '';
805 my $maxlocation = $parameters->{'maxlocation'} // '';
806 my $class_source = $parameters->{'class_source'} // C4::Context->preference('DefaultClassificationSource');
807 my $location = $parameters->{'location'} // '';
808 my $itemtype = $parameters->{'itemtype'} // '';
809 my $ignoreissued = $parameters->{'ignoreissued'} // '';
810 my $datelastseen = $parameters->{'datelastseen'} // '';
811 my $branchcode = $parameters->{'branchcode'} // '';
812 my $branch = $parameters->{'branch'} // '';
813 my $offset = $parameters->{'offset'} // '';
814 my $size = $parameters->{'size'} // '';
815 my $statushash = $parameters->{'statushash'} // '';
816 my $ignore_waiting_holds = $parameters->{'ignore_waiting_holds'} // '';
818 my $dbh = C4::Context->dbh;
819 my ( @bind_params, @where_strings );
821 my $min_cnsort = GetClassSort($class_source,undef,$minlocation);
822 my $max_cnsort = GetClassSort($class_source,undef,$maxlocation);
824 my $select_columns = q{
825 SELECT DISTINCT(items.itemnumber), barcode, itemcallnumber, title, author, biblio.biblionumber, biblio.frameworkcode, datelastseen, homebranch, location, notforloan, damaged, itemlost, withdrawn, stocknumber
827 my $select_count = q{SELECT COUNT(DISTINCT(items.itemnumber))};
828 my $query = q{
829 FROM items
830 LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
831 LEFT JOIN biblioitems on items.biblionumber = biblioitems.biblionumber
833 if ($statushash){
834 for my $authvfield (keys %$statushash){
835 if ( scalar @{$statushash->{$authvfield}} > 0 ){
836 my $joinedvals = join ',', @{$statushash->{$authvfield}};
837 push @where_strings, "$authvfield in (" . $joinedvals . ")";
842 if ($minlocation) {
843 push @where_strings, 'items.cn_sort >= ?';
844 push @bind_params, $min_cnsort;
847 if ($maxlocation) {
848 push @where_strings, 'items.cn_sort <= ?';
849 push @bind_params, $max_cnsort;
852 if ($datelastseen) {
853 $datelastseen = output_pref({ str => $datelastseen, dateformat => 'iso', dateonly => 1 });
854 push @where_strings, '(datelastseen < ? OR datelastseen IS NULL)';
855 push @bind_params, $datelastseen;
858 if ( $location ) {
859 push @where_strings, 'items.location = ?';
860 push @bind_params, $location;
863 if ( $branchcode ) {
864 if($branch eq "homebranch"){
865 push @where_strings, 'items.homebranch = ?';
866 }else{
867 push @where_strings, 'items.holdingbranch = ?';
869 push @bind_params, $branchcode;
872 if ( $itemtype ) {
873 push @where_strings, 'biblioitems.itemtype = ?';
874 push @bind_params, $itemtype;
877 if ( $ignoreissued) {
878 $query .= "LEFT JOIN issues ON items.itemnumber = issues.itemnumber ";
879 push @where_strings, 'issues.date_due IS NULL';
882 if ( $ignore_waiting_holds ) {
883 $query .= "LEFT JOIN reserves ON items.itemnumber = reserves.itemnumber ";
884 push( @where_strings, q{(reserves.found != 'W' OR reserves.found IS NULL)} );
887 if ( @where_strings ) {
888 $query .= 'WHERE ';
889 $query .= join ' AND ', @where_strings;
891 my $count_query = $select_count . $query;
892 $query .= ' ORDER BY items.cn_sort, itemcallnumber, title';
893 $query .= " LIMIT $offset, $size" if ($offset and $size);
894 $query = $select_columns . $query;
895 my $sth = $dbh->prepare($query);
896 $sth->execute( @bind_params );
898 my @results = ();
899 my $tmpresults = $sth->fetchall_arrayref({});
900 $sth = $dbh->prepare( $count_query );
901 $sth->execute( @bind_params );
902 my ($iTotalRecords) = $sth->fetchrow_array();
904 my @avs = Koha::AuthorisedValues->search(
905 { 'marc_subfield_structures.kohafield' => { '>' => '' },
906 'me.authorised_value' => { '>' => '' },
908 { join => { category => 'marc_subfield_structures' },
909 distinct => ['marc_subfield_structures.kohafield, me.category, frameworkcode, me.authorised_value'],
910 '+select' => [ 'marc_subfield_structures.kohafield', 'marc_subfield_structures.frameworkcode', 'me.authorised_value', 'me.lib' ],
911 '+as' => [ 'kohafield', 'frameworkcode', 'authorised_value', 'lib' ],
915 my $avmapping = { map { $_->get_column('kohafield') . ',' . $_->get_column('frameworkcode') . ',' . $_->get_column('authorised_value') => $_->get_column('lib') } @avs };
917 foreach my $row (@$tmpresults) {
919 # Auth values
920 foreach (keys %$row) {
921 if (defined($avmapping->{"items.$_,".$row->{'frameworkcode'}.",".$row->{$_}})) {
922 $row->{$_} = $avmapping->{"items.$_,".$row->{'frameworkcode'}.",".$row->{$_}};
925 push @results, $row;
928 return (\@results, $iTotalRecords);
931 =head2 GetItemsInfo
933 @results = GetItemsInfo($biblionumber);
935 Returns information about items with the given biblionumber.
937 C<GetItemsInfo> returns a list of references-to-hash. Each element
938 contains a number of keys. Most of them are attributes from the
939 C<biblio>, C<biblioitems>, C<items>, and C<itemtypes> tables in the
940 Koha database. Other keys include:
942 =over 2
944 =item C<$data-E<gt>{branchname}>
946 The name (not the code) of the branch to which the book belongs.
948 =item C<$data-E<gt>{datelastseen}>
950 This is simply C<items.datelastseen>, except that while the date is
951 stored in YYYY-MM-DD format in the database, here it is converted to
952 DD/MM/YYYY format. A NULL date is returned as C<//>.
954 =item C<$data-E<gt>{datedue}>
956 =item C<$data-E<gt>{class}>
958 This is the concatenation of C<biblioitems.classification>, the book's
959 Dewey code, and C<biblioitems.subclass>.
961 =item C<$data-E<gt>{ocount}>
963 I think this is the number of copies of the book available.
965 =item C<$data-E<gt>{order}>
967 If this is set, it is set to C<One Order>.
969 =back
971 =cut
973 sub GetItemsInfo {
974 my ( $biblionumber ) = @_;
975 my $dbh = C4::Context->dbh;
976 require C4::Languages;
977 my $language = C4::Languages::getlanguage();
978 my $query = "
979 SELECT items.*,
980 biblio.*,
981 biblioitems.volume,
982 biblioitems.number,
983 biblioitems.itemtype,
984 biblioitems.isbn,
985 biblioitems.issn,
986 biblioitems.publicationyear,
987 biblioitems.publishercode,
988 biblioitems.volumedate,
989 biblioitems.volumedesc,
990 biblioitems.lccn,
991 biblioitems.url,
992 items.notforloan as itemnotforloan,
993 issues.borrowernumber,
994 issues.date_due as datedue,
995 issues.onsite_checkout,
996 borrowers.cardnumber,
997 borrowers.surname,
998 borrowers.firstname,
999 borrowers.branchcode as bcode,
1000 serial.serialseq,
1001 serial.publisheddate,
1002 itemtypes.description,
1003 COALESCE( localization.translation, itemtypes.description ) AS translated_description,
1004 itemtypes.notforloan as notforloan_per_itemtype,
1005 holding.branchurl,
1006 holding.branchcode,
1007 holding.branchname,
1008 holding.opac_info as holding_branch_opac_info,
1009 home.opac_info as home_branch_opac_info
1011 $query .= "
1012 FROM items
1013 LEFT JOIN branches AS holding ON items.holdingbranch = holding.branchcode
1014 LEFT JOIN branches AS home ON items.homebranch=home.branchcode
1015 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
1016 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
1017 LEFT JOIN issues USING (itemnumber)
1018 LEFT JOIN borrowers USING (borrowernumber)
1019 LEFT JOIN serialitems USING (itemnumber)
1020 LEFT JOIN serial USING (serialid)
1021 LEFT JOIN itemtypes ON itemtypes.itemtype = "
1022 . (C4::Context->preference('item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype');
1023 $query .= q|
1024 LEFT JOIN localization ON itemtypes.itemtype = localization.code
1025 AND localization.entity = 'itemtypes'
1026 AND localization.lang = ?
1029 $query .= " WHERE items.biblionumber = ? ORDER BY home.branchname, items.enumchron, LPAD( items.copynumber, 8, '0' ), items.dateaccessioned DESC" ;
1030 my $sth = $dbh->prepare($query);
1031 $sth->execute($language, $biblionumber);
1032 my $i = 0;
1033 my @results;
1034 my $serial;
1036 my $userenv = C4::Context->userenv;
1037 my $want_not_same_branch = C4::Context->preference("IndependentBranches") && !C4::Context->IsSuperLibrarian();
1038 while ( my $data = $sth->fetchrow_hashref ) {
1039 if ( $data->{borrowernumber} && $want_not_same_branch) {
1040 $data->{'NOTSAMEBRANCH'} = $data->{'bcode'} ne $userenv->{branch};
1043 $serial ||= $data->{'serial'};
1045 my $descriptions;
1046 # get notforloan complete status if applicable
1047 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $data->{frameworkcode}, kohafield => 'items.notforloan', authorised_value => $data->{itemnotforloan} });
1048 $data->{notforloanvalue} = $descriptions->{lib} // '';
1049 $data->{notforloanvalueopac} = $descriptions->{opac_description} // '';
1051 # get restricted status and description if applicable
1052 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $data->{frameworkcode}, kohafield => 'items.restricted', authorised_value => $data->{restricted} });
1053 $data->{restrictedvalue} = $descriptions->{lib} // '';
1054 $data->{restrictedvalueopac} = $descriptions->{opac_description} // '';
1056 # my stack procedures
1057 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $data->{frameworkcode}, kohafield => 'items.stack', authorised_value => $data->{stack} });
1058 $data->{stack} = $descriptions->{lib} // '';
1060 # Find the last 3 people who borrowed this item.
1061 my $sth2 = $dbh->prepare("SELECT * FROM old_issues,borrowers
1062 WHERE itemnumber = ?
1063 AND old_issues.borrowernumber = borrowers.borrowernumber
1064 ORDER BY returndate DESC
1065 LIMIT 3");
1066 $sth2->execute($data->{'itemnumber'});
1067 my $ii = 0;
1068 while (my $data2 = $sth2->fetchrow_hashref()) {
1069 $data->{"timestamp$ii"} = $data2->{'timestamp'} if $data2->{'timestamp'};
1070 $data->{"card$ii"} = $data2->{'cardnumber'} if $data2->{'cardnumber'};
1071 $data->{"borrower$ii"} = $data2->{'borrowernumber'} if $data2->{'borrowernumber'};
1072 $ii++;
1075 $results[$i] = $data;
1076 $i++;
1079 return $serial
1080 ? sort { ($b->{'publisheddate'} || $b->{'enumchron'}) cmp ($a->{'publisheddate'} || $a->{'enumchron'}) } @results
1081 : @results;
1084 =head2 GetItemsLocationInfo
1086 my @itemlocinfo = GetItemsLocationInfo($biblionumber);
1088 Returns the branch names, shelving location and itemcallnumber for each item attached to the biblio in question
1090 C<GetItemsInfo> returns a list of references-to-hash. Data returned:
1092 =over 2
1094 =item C<$data-E<gt>{homebranch}>
1096 Branch Name of the item's homebranch
1098 =item C<$data-E<gt>{holdingbranch}>
1100 Branch Name of the item's holdingbranch
1102 =item C<$data-E<gt>{location}>
1104 Item's shelving location code
1106 =item C<$data-E<gt>{location_intranet}>
1108 The intranet description for the Shelving Location as set in authorised_values 'LOC'
1110 =item C<$data-E<gt>{location_opac}>
1112 The OPAC description for the Shelving Location as set in authorised_values 'LOC'. Falls back to intranet description if no OPAC
1113 description is set.
1115 =item C<$data-E<gt>{itemcallnumber}>
1117 Item's itemcallnumber
1119 =item C<$data-E<gt>{cn_sort}>
1121 Item's call number normalized for sorting
1123 =back
1125 =cut
1127 sub GetItemsLocationInfo {
1128 my $biblionumber = shift;
1129 my @results;
1131 my $dbh = C4::Context->dbh;
1132 my $query = "SELECT a.branchname as homebranch, b.branchname as holdingbranch,
1133 location, itemcallnumber, cn_sort
1134 FROM items, branches as a, branches as b
1135 WHERE homebranch = a.branchcode AND holdingbranch = b.branchcode
1136 AND biblionumber = ?
1137 ORDER BY cn_sort ASC";
1138 my $sth = $dbh->prepare($query);
1139 $sth->execute($biblionumber);
1141 while ( my $data = $sth->fetchrow_hashref ) {
1142 my $av = Koha::AuthorisedValues->search({ category => 'LOC', authorised_value => $data->{location} });
1143 $av = $av->count ? $av->next : undef;
1144 $data->{location_intranet} = $av ? $av->lib : '';
1145 $data->{location_opac} = $av ? $av->opac_description : '';
1146 push @results, $data;
1148 return @results;
1151 =head2 GetHostItemsInfo
1153 $hostiteminfo = GetHostItemsInfo($hostfield);
1154 Returns the iteminfo for items linked to records via a host field
1156 =cut
1158 sub GetHostItemsInfo {
1159 my ($record) = @_;
1160 my @returnitemsInfo;
1162 if( !C4::Context->preference('EasyAnalyticalRecords') ) {
1163 return @returnitemsInfo;
1166 my @fields;
1167 if( C4::Context->preference('marcflavour') eq 'MARC21' ||
1168 C4::Context->preference('marcflavour') eq 'NORMARC') {
1169 @fields = $record->field('773');
1170 } elsif( C4::Context->preference('marcflavour') eq 'UNIMARC') {
1171 @fields = $record->field('461');
1174 foreach my $hostfield ( @fields ) {
1175 my $hostbiblionumber = $hostfield->subfield("0");
1176 my $linkeditemnumber = $hostfield->subfield("9");
1177 my @hostitemInfos = GetItemsInfo($hostbiblionumber);
1178 foreach my $hostitemInfo (@hostitemInfos) {
1179 if( $hostitemInfo->{itemnumber} eq $linkeditemnumber ) {
1180 push @returnitemsInfo, $hostitemInfo;
1181 last;
1185 return @returnitemsInfo;
1188 =head2 get_hostitemnumbers_of
1190 my @itemnumbers_of = get_hostitemnumbers_of($biblionumber);
1192 Given a biblionumber, return the list of corresponding itemnumbers that are linked to it via host fields
1194 Return a reference on a hash where key is a biblionumber and values are
1195 references on array of itemnumbers.
1197 =cut
1200 sub get_hostitemnumbers_of {
1201 my ($biblionumber) = @_;
1203 if( !C4::Context->preference('EasyAnalyticalRecords') ) {
1204 return ();
1207 my $marcrecord = C4::Biblio::GetMarcBiblio({ biblionumber => $biblionumber });
1208 return unless $marcrecord;
1210 my ( @returnhostitemnumbers, $tag, $biblio_s, $item_s );
1212 my $marcflavor = C4::Context->preference('marcflavour');
1213 if ( $marcflavor eq 'MARC21' || $marcflavor eq 'NORMARC' ) {
1214 $tag = '773';
1215 $biblio_s = '0';
1216 $item_s = '9';
1218 elsif ( $marcflavor eq 'UNIMARC' ) {
1219 $tag = '461';
1220 $biblio_s = '0';
1221 $item_s = '9';
1224 foreach my $hostfield ( $marcrecord->field($tag) ) {
1225 my $hostbiblionumber = $hostfield->subfield($biblio_s);
1226 next unless $hostbiblionumber; # have tag, don't have $biblio_s subfield
1227 my $linkeditemnumber = $hostfield->subfield($item_s);
1228 if ( ! $linkeditemnumber ) {
1229 warn "ERROR biblionumber $biblionumber has 773^0, but doesn't have 9";
1230 next;
1232 my $is_from_biblio = Koha::Items->search({ itemnumber => $linkeditemnumber, biblionumber => $hostbiblionumber });
1233 push @returnhostitemnumbers, $linkeditemnumber
1234 if $is_from_biblio;
1237 return @returnhostitemnumbers;
1240 =head2 GetHiddenItemnumbers
1242 my @itemnumbers_to_hide = GetHiddenItemnumbers({ items => \@items, borcat => $category });
1244 Given a list of items it checks which should be hidden from the OPAC given
1245 the current configuration. Returns a list of itemnumbers corresponding to
1246 those that should be hidden. Optionally takes a borcat parameter for certain borrower types
1247 to be excluded
1249 =cut
1251 sub GetHiddenItemnumbers {
1252 my $params = shift;
1253 my $items = $params->{items};
1254 if (my $exceptions = C4::Context->preference('OpacHiddenItemsExceptions') and $params->{'borcat'}){
1255 foreach my $except (split(/\|/, $exceptions)){
1256 if ($params->{'borcat'} eq $except){
1257 return; # we don't hide anything for this borrower category
1261 my @resultitems;
1263 my $yaml = C4::Context->preference('OpacHiddenItems');
1264 return () if (! $yaml =~ /\S/ );
1265 $yaml = "$yaml\n\n"; # YAML is anal on ending \n. Surplus does not hurt
1266 my $hidingrules;
1267 eval {
1268 $hidingrules = YAML::Load($yaml);
1270 if ($@) {
1271 warn "Unable to parse OpacHiddenItems syspref : $@";
1272 return ();
1274 my $dbh = C4::Context->dbh;
1276 # For each item
1277 foreach my $item (@$items) {
1279 # We check each rule
1280 foreach my $field (keys %$hidingrules) {
1281 my $val;
1282 if (exists $item->{$field}) {
1283 $val = $item->{$field};
1285 else {
1286 my $query = "SELECT $field from items where itemnumber = ?";
1287 $val = $dbh->selectrow_array($query, undef, $item->{'itemnumber'});
1289 $val = '' unless defined $val;
1291 # If the results matches the values in the yaml file
1292 if (any { $val eq $_ } @{$hidingrules->{$field}}) {
1294 # We add the itemnumber to the list
1295 push @resultitems, $item->{'itemnumber'};
1297 # If at least one rule matched for an item, no need to test the others
1298 last;
1302 return @resultitems;
1305 =head1 LIMITED USE FUNCTIONS
1307 The following functions, while part of the public API,
1308 are not exported. This is generally because they are
1309 meant to be used by only one script for a specific
1310 purpose, and should not be used in any other context
1311 without careful thought.
1313 =cut
1315 =head2 GetMarcItem
1317 my $item_marc = GetMarcItem($biblionumber, $itemnumber);
1319 Returns MARC::Record of the item passed in parameter.
1320 This function is meant for use only in C<cataloguing/additem.pl>,
1321 where it is needed to support that script's MARC-like
1322 editor.
1324 =cut
1326 sub GetMarcItem {
1327 my ( $biblionumber, $itemnumber ) = @_;
1329 # GetMarcItem has been revised so that it does the following:
1330 # 1. Gets the item information from the items table.
1331 # 2. Converts it to a MARC field for storage in the bib record.
1333 # The previous behavior was:
1334 # 1. Get the bib record.
1335 # 2. Return the MARC tag corresponding to the item record.
1337 # The difference is that one treats the items row as authoritative,
1338 # while the other treats the MARC representation as authoritative
1339 # under certain circumstances.
1341 my $itemrecord = GetItem($itemnumber);
1343 # Tack on 'items.' prefix to column names so that C4::Biblio::TransformKohaToMarc will work.
1344 # Also, don't emit a subfield if the underlying field is blank.
1347 return Item2Marc($itemrecord,$biblionumber);
1350 sub Item2Marc {
1351 my ($itemrecord,$biblionumber)=@_;
1352 my $mungeditem = {
1353 map {
1354 defined($itemrecord->{$_}) && $itemrecord->{$_} ne '' ? ("items.$_" => $itemrecord->{$_}) : ()
1355 } keys %{ $itemrecord }
1357 my $framework = C4::Biblio::GetFrameworkCode( $biblionumber );
1358 my $itemmarc = C4::Biblio::TransformKohaToMarc( $mungeditem ); # Bug 21774: no_split parameter removed to allow cloned subfields
1359 my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField(
1360 "items.itemnumber", $framework,
1363 my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($mungeditem->{'items.more_subfields_xml'});
1364 if (defined $unlinked_item_subfields and $#$unlinked_item_subfields > -1) {
1365 foreach my $field ($itemmarc->field($itemtag)){
1366 $field->add_subfields(@$unlinked_item_subfields);
1369 return $itemmarc;
1372 =head1 PRIVATE FUNCTIONS AND VARIABLES
1374 The following functions are not meant to be called
1375 directly, but are documented in order to explain
1376 the inner workings of C<C4::Items>.
1378 =cut
1380 =head2 %derived_columns
1382 This hash keeps track of item columns that
1383 are strictly derived from other columns in
1384 the item record and are not meant to be set
1385 independently.
1387 Each key in the hash should be the name of a
1388 column (as named by TransformMarcToKoha). Each
1389 value should be hashref whose keys are the
1390 columns on which the derived column depends. The
1391 hashref should also contain a 'BUILDER' key
1392 that is a reference to a sub that calculates
1393 the derived value.
1395 =cut
1397 my %derived_columns = (
1398 'items.cn_sort' => {
1399 'itemcallnumber' => 1,
1400 'items.cn_source' => 1,
1401 'BUILDER' => \&_calc_items_cn_sort,
1405 =head2 _set_derived_columns_for_add
1407 _set_derived_column_for_add($item);
1409 Given an item hash representing a new item to be added,
1410 calculate any derived columns. Currently the only
1411 such column is C<items.cn_sort>.
1413 =cut
1415 sub _set_derived_columns_for_add {
1416 my $item = shift;
1418 foreach my $column (keys %derived_columns) {
1419 my $builder = $derived_columns{$column}->{'BUILDER'};
1420 my $source_values = {};
1421 foreach my $source_column (keys %{ $derived_columns{$column} }) {
1422 next if $source_column eq 'BUILDER';
1423 $source_values->{$source_column} = $item->{$source_column};
1425 $builder->($item, $source_values);
1429 =head2 _set_derived_columns_for_mod
1431 _set_derived_column_for_mod($item);
1433 Given an item hash representing a new item to be modified.
1434 calculate any derived columns. Currently the only
1435 such column is C<items.cn_sort>.
1437 This routine differs from C<_set_derived_columns_for_add>
1438 in that it needs to handle partial item records. In other
1439 words, the caller of C<ModItem> may have supplied only one
1440 or two columns to be changed, so this function needs to
1441 determine whether any of the columns to be changed affect
1442 any of the derived columns. Also, if a derived column
1443 depends on more than one column, but the caller is not
1444 changing all of then, this routine retrieves the unchanged
1445 values from the database in order to ensure a correct
1446 calculation.
1448 =cut
1450 sub _set_derived_columns_for_mod {
1451 my $item = shift;
1453 foreach my $column (keys %derived_columns) {
1454 my $builder = $derived_columns{$column}->{'BUILDER'};
1455 my $source_values = {};
1456 my %missing_sources = ();
1457 my $must_recalc = 0;
1458 foreach my $source_column (keys %{ $derived_columns{$column} }) {
1459 next if $source_column eq 'BUILDER';
1460 if (exists $item->{$source_column}) {
1461 $must_recalc = 1;
1462 $source_values->{$source_column} = $item->{$source_column};
1463 } else {
1464 $missing_sources{$source_column} = 1;
1467 if ($must_recalc) {
1468 foreach my $source_column (keys %missing_sources) {
1469 $source_values->{$source_column} = _get_single_item_column($source_column, $item->{'itemnumber'});
1471 $builder->($item, $source_values);
1476 =head2 _do_column_fixes_for_mod
1478 _do_column_fixes_for_mod($item);
1480 Given an item hashref containing one or more
1481 columns to modify, fix up certain values.
1482 Specifically, set to 0 any passed value
1483 of C<notforloan>, C<damaged>, C<itemlost>, or
1484 C<withdrawn> that is either undefined or
1485 contains the empty string.
1487 =cut
1489 sub _do_column_fixes_for_mod {
1490 my $item = shift;
1492 if (exists $item->{'notforloan'} and
1493 (not defined $item->{'notforloan'} or $item->{'notforloan'} eq '')) {
1494 $item->{'notforloan'} = 0;
1496 if (exists $item->{'damaged'} and
1497 (not defined $item->{'damaged'} or $item->{'damaged'} eq '')) {
1498 $item->{'damaged'} = 0;
1500 if (exists $item->{'itemlost'} and
1501 (not defined $item->{'itemlost'} or $item->{'itemlost'} eq '')) {
1502 $item->{'itemlost'} = 0;
1504 if (exists $item->{'withdrawn'} and
1505 (not defined $item->{'withdrawn'} or $item->{'withdrawn'} eq '')) {
1506 $item->{'withdrawn'} = 0;
1508 if (exists $item->{location}
1509 and $item->{location} ne 'CART'
1510 and $item->{location} ne 'PROC'
1511 and not $item->{permanent_location}
1513 $item->{'permanent_location'} = $item->{'location'};
1515 if (exists $item->{'timestamp'}) {
1516 delete $item->{'timestamp'};
1520 =head2 _get_single_item_column
1522 _get_single_item_column($column, $itemnumber);
1524 Retrieves the value of a single column from an C<items>
1525 row specified by C<$itemnumber>.
1527 =cut
1529 sub _get_single_item_column {
1530 my $column = shift;
1531 my $itemnumber = shift;
1533 my $dbh = C4::Context->dbh;
1534 my $sth = $dbh->prepare("SELECT $column FROM items WHERE itemnumber = ?");
1535 $sth->execute($itemnumber);
1536 my ($value) = $sth->fetchrow();
1537 return $value;
1540 =head2 _calc_items_cn_sort
1542 _calc_items_cn_sort($item, $source_values);
1544 Helper routine to calculate C<items.cn_sort>.
1546 =cut
1548 sub _calc_items_cn_sort {
1549 my $item = shift;
1550 my $source_values = shift;
1552 $item->{'items.cn_sort'} = GetClassSort($source_values->{'items.cn_source'}, $source_values->{'itemcallnumber'}, "");
1555 =head2 _set_defaults_for_add
1557 _set_defaults_for_add($item_hash);
1559 Given an item hash representing an item to be added, set
1560 correct default values for columns whose default value
1561 is not handled by the DBMS. This includes the following
1562 columns:
1564 =over 2
1566 =item *
1568 C<items.dateaccessioned>
1570 =item *
1572 C<items.notforloan>
1574 =item *
1576 C<items.damaged>
1578 =item *
1580 C<items.itemlost>
1582 =item *
1584 C<items.withdrawn>
1586 =back
1588 =cut
1590 sub _set_defaults_for_add {
1591 my $item = shift;
1592 $item->{dateaccessioned} ||= output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
1593 $item->{$_} ||= 0 for (qw( notforloan damaged itemlost withdrawn));
1596 =head2 _koha_new_item
1598 my ($itemnumber,$error) = _koha_new_item( $item, $barcode );
1600 Perform the actual insert into the C<items> table.
1602 =cut
1604 sub _koha_new_item {
1605 my ( $item, $barcode ) = @_;
1606 my $dbh=C4::Context->dbh;
1607 my $error;
1608 $item->{permanent_location} //= $item->{location};
1609 _mod_item_dates( $item );
1610 my $query =
1611 "INSERT INTO items SET
1612 biblionumber = ?,
1613 biblioitemnumber = ?,
1614 barcode = ?,
1615 dateaccessioned = ?,
1616 booksellerid = ?,
1617 homebranch = ?,
1618 price = ?,
1619 replacementprice = ?,
1620 replacementpricedate = ?,
1621 datelastborrowed = ?,
1622 datelastseen = ?,
1623 stack = ?,
1624 notforloan = ?,
1625 damaged = ?,
1626 itemlost = ?,
1627 withdrawn = ?,
1628 itemcallnumber = ?,
1629 coded_location_qualifier = ?,
1630 restricted = ?,
1631 itemnotes = ?,
1632 itemnotes_nonpublic = ?,
1633 holdingbranch = ?,
1634 paidfor = ?,
1635 location = ?,
1636 permanent_location = ?,
1637 onloan = ?,
1638 issues = ?,
1639 renewals = ?,
1640 reserves = ?,
1641 cn_source = ?,
1642 cn_sort = ?,
1643 ccode = ?,
1644 itype = ?,
1645 materials = ?,
1646 uri = ?,
1647 enumchron = ?,
1648 more_subfields_xml = ?,
1649 copynumber = ?,
1650 stocknumber = ?,
1651 new_status = ?
1653 my $sth = $dbh->prepare($query);
1654 my $today = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
1655 $sth->execute(
1656 $item->{'biblionumber'},
1657 $item->{'biblioitemnumber'},
1658 $barcode,
1659 $item->{'dateaccessioned'},
1660 $item->{'booksellerid'},
1661 $item->{'homebranch'},
1662 $item->{'price'},
1663 $item->{'replacementprice'},
1664 $item->{'replacementpricedate'} || $today,
1665 $item->{datelastborrowed},
1666 $item->{datelastseen} || $today,
1667 $item->{stack},
1668 $item->{'notforloan'},
1669 $item->{'damaged'},
1670 $item->{'itemlost'},
1671 $item->{'withdrawn'},
1672 $item->{'itemcallnumber'},
1673 $item->{'coded_location_qualifier'},
1674 $item->{'restricted'},
1675 $item->{'itemnotes'},
1676 $item->{'itemnotes_nonpublic'},
1677 $item->{'holdingbranch'},
1678 $item->{'paidfor'},
1679 $item->{'location'},
1680 $item->{'permanent_location'},
1681 $item->{'onloan'},
1682 $item->{'issues'},
1683 $item->{'renewals'},
1684 $item->{'reserves'},
1685 $item->{'items.cn_source'},
1686 $item->{'items.cn_sort'},
1687 $item->{'ccode'},
1688 $item->{'itype'},
1689 $item->{'materials'},
1690 $item->{'uri'},
1691 $item->{'enumchron'},
1692 $item->{'more_subfields_xml'},
1693 $item->{'copynumber'},
1694 $item->{'stocknumber'},
1695 $item->{'new_status'},
1698 my $itemnumber;
1699 if ( defined $sth->errstr ) {
1700 $error.="ERROR in _koha_new_item $query".$sth->errstr;
1702 else {
1703 $itemnumber = $dbh->{'mysql_insertid'};
1706 return ( $itemnumber, $error );
1709 =head2 MoveItemFromBiblio
1711 MoveItemFromBiblio($itenumber, $frombiblio, $tobiblio);
1713 Moves an item from a biblio to another
1715 Returns undef if the move failed or the biblionumber of the destination record otherwise
1717 =cut
1719 sub MoveItemFromBiblio {
1720 my ($itemnumber, $frombiblio, $tobiblio) = @_;
1721 my $dbh = C4::Context->dbh;
1722 my ( $tobiblioitem ) = $dbh->selectrow_array(q|
1723 SELECT biblioitemnumber
1724 FROM biblioitems
1725 WHERE biblionumber = ?
1726 |, undef, $tobiblio );
1727 my $return = $dbh->do(q|
1728 UPDATE items
1729 SET biblioitemnumber = ?,
1730 biblionumber = ?
1731 WHERE itemnumber = ?
1732 AND biblionumber = ?
1733 |, undef, $tobiblioitem, $tobiblio, $itemnumber, $frombiblio );
1734 if ($return == 1) {
1735 ModZebra( $tobiblio, "specialUpdate", "biblioserver" );
1736 ModZebra( $frombiblio, "specialUpdate", "biblioserver" );
1737 # Checking if the item we want to move is in an order
1738 require C4::Acquisition;
1739 my $order = C4::Acquisition::GetOrderFromItemnumber($itemnumber);
1740 if ($order) {
1741 # Replacing the biblionumber within the order if necessary
1742 $order->{'biblionumber'} = $tobiblio;
1743 C4::Acquisition::ModOrder($order);
1746 # Update reserves, hold_fill_targets, tmp_holdsqueue and linktracker tables
1747 for my $table_name ( qw( reserves hold_fill_targets tmp_holdsqueue linktracker ) ) {
1748 $dbh->do( qq|
1749 UPDATE $table_name
1750 SET biblionumber = ?
1751 WHERE itemnumber = ?
1752 |, undef, $tobiblio, $itemnumber );
1754 return $tobiblio;
1756 return;
1759 =head2 ItemSafeToDelete
1761 ItemSafeToDelete( $biblionumber, $itemnumber);
1763 Exported function (core API) for checking whether an item record is safe to delete.
1765 returns 1 if the item is safe to delete,
1767 "book_on_loan" if the item is checked out,
1769 "not_same_branch" if the item is blocked by independent branches,
1771 "book_reserved" if the there are holds aganst the item, or
1773 "linked_analytics" if the item has linked analytic records.
1775 =cut
1777 sub ItemSafeToDelete {
1778 my ( $biblionumber, $itemnumber ) = @_;
1779 my $status;
1780 my $dbh = C4::Context->dbh;
1782 my $error;
1784 my $countanalytics = GetAnalyticsCount($itemnumber);
1786 # check that there is no issue on this item before deletion.
1787 my $sth = $dbh->prepare(
1789 SELECT COUNT(*) FROM issues
1790 WHERE itemnumber = ?
1793 $sth->execute($itemnumber);
1794 my ($onloan) = $sth->fetchrow;
1796 my $item = GetItem($itemnumber);
1798 if ($onloan) {
1799 $status = "book_on_loan";
1801 elsif ( defined C4::Context->userenv
1802 and !C4::Context->IsSuperLibrarian()
1803 and C4::Context->preference("IndependentBranches")
1804 and ( C4::Context->userenv->{branch} ne $item->{'homebranch'} ) )
1806 $status = "not_same_branch";
1808 else {
1809 # check it doesn't have a waiting reserve
1810 $sth = $dbh->prepare(
1812 SELECT COUNT(*) FROM reserves
1813 WHERE (found = 'W' OR found = 'T')
1814 AND itemnumber = ?
1817 $sth->execute($itemnumber);
1818 my ($reserve) = $sth->fetchrow;
1819 if ($reserve) {
1820 $status = "book_reserved";
1822 elsif ( $countanalytics > 0 ) {
1823 $status = "linked_analytics";
1825 else {
1826 $status = 1;
1829 return $status;
1832 =head2 DelItemCheck
1834 DelItemCheck( $biblionumber, $itemnumber);
1836 Exported function (core API) for deleting an item record in Koha if there no current issue.
1838 DelItemCheck wraps ItemSafeToDelete around DelItem.
1840 =cut
1842 sub DelItemCheck {
1843 my ( $biblionumber, $itemnumber ) = @_;
1844 my $status = ItemSafeToDelete( $biblionumber, $itemnumber );
1846 if ( $status == 1 ) {
1847 DelItem(
1849 biblionumber => $biblionumber,
1850 itemnumber => $itemnumber
1854 return $status;
1857 =head2 _koha_modify_item
1859 my ($itemnumber,$error) =_koha_modify_item( $item );
1861 Perform the actual update of the C<items> row. Note that this
1862 routine accepts a hashref specifying the columns to update.
1864 =cut
1866 sub _koha_modify_item {
1867 my ( $item ) = @_;
1868 my $dbh=C4::Context->dbh;
1869 my $error;
1871 my $query = "UPDATE items SET ";
1872 my @bind;
1873 _mod_item_dates( $item );
1874 for my $key ( keys %$item ) {
1875 next if ( $key eq 'itemnumber' );
1876 $query.="$key=?,";
1877 push @bind, $item->{$key};
1879 $query =~ s/,$//;
1880 $query .= " WHERE itemnumber=?";
1881 push @bind, $item->{'itemnumber'};
1882 my $sth = $dbh->prepare($query);
1883 $sth->execute(@bind);
1884 if ( $sth->err ) {
1885 $error.="ERROR in _koha_modify_item $query: ".$sth->errstr;
1886 warn $error;
1888 return ($item->{'itemnumber'},$error);
1891 sub _mod_item_dates { # date formatting for date fields in item hash
1892 my ( $item ) = @_;
1893 return if !$item || ref($item) ne 'HASH';
1895 my @keys = grep
1896 { $_ =~ /^onloan$|^date|date$|datetime$/ }
1897 keys %$item;
1898 # Incl. dateaccessioned,replacementpricedate,datelastborrowed,datelastseen
1899 # NOTE: We do not (yet) have items fields ending with datetime
1900 # Fields with _on$ have been handled already
1902 foreach my $key ( @keys ) {
1903 next if !defined $item->{$key}; # skip undefs
1904 my $dt = eval { dt_from_string( $item->{$key} ) };
1905 # eval: dt_from_string will die on us if we pass illegal dates
1907 my $newstr;
1908 if( defined $dt && ref($dt) eq 'DateTime' ) {
1909 if( $key =~ /datetime/ ) {
1910 $newstr = DateTime::Format::MySQL->format_datetime($dt);
1911 } else {
1912 $newstr = DateTime::Format::MySQL->format_date($dt);
1915 $item->{$key} = $newstr; # might be undef to clear garbage
1919 =head2 _koha_delete_item
1921 _koha_delete_item( $itemnum );
1923 Internal function to delete an item record from the koha tables
1925 =cut
1927 sub _koha_delete_item {
1928 my ( $itemnum ) = @_;
1930 my $dbh = C4::Context->dbh;
1931 # save the deleted item to deleteditems table
1932 my $sth = $dbh->prepare("SELECT * FROM items WHERE itemnumber=?");
1933 $sth->execute($itemnum);
1934 my $data = $sth->fetchrow_hashref();
1936 # There is no item to delete
1937 return 0 unless $data;
1939 my $query = "INSERT INTO deleteditems SET ";
1940 my @bind = ();
1941 foreach my $key ( keys %$data ) {
1942 next if ( $key eq 'timestamp' ); # timestamp will be set by db
1943 $query .= "$key = ?,";
1944 push( @bind, $data->{$key} );
1946 $query =~ s/\,$//;
1947 $sth = $dbh->prepare($query);
1948 $sth->execute(@bind);
1950 # delete from items table
1951 $sth = $dbh->prepare("DELETE FROM items WHERE itemnumber=?");
1952 my $deleted = $sth->execute($itemnum);
1953 return ( $deleted == 1 ) ? 1 : 0;
1956 =head2 _marc_from_item_hash
1958 my $item_marc = _marc_from_item_hash($item, $frameworkcode[, $unlinked_item_subfields]);
1960 Given an item hash representing a complete item record,
1961 create a C<MARC::Record> object containing an embedded
1962 tag representing that item.
1964 The third, optional parameter C<$unlinked_item_subfields> is
1965 an arrayref of subfields (not mapped to C<items> fields per the
1966 framework) to be added to the MARC representation
1967 of the item.
1969 =cut
1971 sub _marc_from_item_hash {
1972 my $item = shift;
1973 my $frameworkcode = shift;
1974 my $unlinked_item_subfields;
1975 if (@_) {
1976 $unlinked_item_subfields = shift;
1979 # Tack on 'items.' prefix to column names so lookup from MARC frameworks will work
1980 # Also, don't emit a subfield if the underlying field is blank.
1981 my $mungeditem = { map { (defined($item->{$_}) and $item->{$_} ne '') ?
1982 (/^items\./ ? ($_ => $item->{$_}) : ("items.$_" => $item->{$_}))
1983 : () } keys %{ $item } };
1985 my $item_marc = MARC::Record->new();
1986 foreach my $item_field ( keys %{$mungeditem} ) {
1987 my ( $tag, $subfield ) = C4::Biblio::GetMarcFromKohaField( $item_field, $frameworkcode );
1988 next unless defined $tag and defined $subfield; # skip if not mapped to MARC field
1989 my @values = split(/\s?\|\s?/, $mungeditem->{$item_field}, -1);
1990 foreach my $value (@values){
1991 if ( my $field = $item_marc->field($tag) ) {
1992 $field->add_subfields( $subfield => $value );
1993 } else {
1994 my $add_subfields = [];
1995 if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
1996 $add_subfields = $unlinked_item_subfields;
1998 $item_marc->add_fields( $tag, " ", " ", $subfield => $value, @$add_subfields );
2003 return $item_marc;
2006 =head2 _repack_item_errors
2008 Add an error message hash generated by C<CheckItemPreSave>
2009 to a list of errors.
2011 =cut
2013 sub _repack_item_errors {
2014 my $item_sequence_num = shift;
2015 my $item_ref = shift;
2016 my $error_ref = shift;
2018 my @repacked_errors = ();
2020 foreach my $error_code (sort keys %{ $error_ref }) {
2021 my $repacked_error = {};
2022 $repacked_error->{'item_sequence'} = $item_sequence_num;
2023 $repacked_error->{'item_barcode'} = exists($item_ref->{'barcode'}) ? $item_ref->{'barcode'} : '';
2024 $repacked_error->{'error_code'} = $error_code;
2025 $repacked_error->{'error_information'} = $error_ref->{$error_code};
2026 push @repacked_errors, $repacked_error;
2029 return @repacked_errors;
2032 =head2 _get_unlinked_item_subfields
2034 my $unlinked_item_subfields = _get_unlinked_item_subfields($original_item_marc, $frameworkcode);
2036 =cut
2038 sub _get_unlinked_item_subfields {
2039 my $original_item_marc = shift;
2040 my $frameworkcode = shift;
2042 my $marcstructure = C4::Biblio::GetMarcStructure(1, $frameworkcode, { unsafe => 1 });
2044 # assume that this record has only one field, and that that
2045 # field contains only the item information
2046 my $subfields = [];
2047 my @fields = $original_item_marc->fields();
2048 if ($#fields > -1) {
2049 my $field = $fields[0];
2050 my $tag = $field->tag();
2051 foreach my $subfield ($field->subfields()) {
2052 if (defined $subfield->[1] and
2053 $subfield->[1] ne '' and
2054 !$marcstructure->{$tag}->{$subfield->[0]}->{'kohafield'}) {
2055 push @$subfields, $subfield->[0] => $subfield->[1];
2059 return $subfields;
2062 =head2 _get_unlinked_subfields_xml
2064 my $unlinked_subfields_xml = _get_unlinked_subfields_xml($unlinked_item_subfields);
2066 =cut
2068 sub _get_unlinked_subfields_xml {
2069 my $unlinked_item_subfields = shift;
2071 my $xml;
2072 if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
2073 my $marc = MARC::Record->new();
2074 # use of tag 999 is arbitrary, and doesn't need to match the item tag
2075 # used in the framework
2076 $marc->append_fields(MARC::Field->new('999', ' ', ' ', @$unlinked_item_subfields));
2077 $marc->encoding("UTF-8");
2078 $xml = $marc->as_xml("USMARC");
2081 return $xml;
2084 =head2 _parse_unlinked_item_subfields_from_xml
2086 my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($whole_item->{'more_subfields_xml'}):
2088 =cut
2090 sub _parse_unlinked_item_subfields_from_xml {
2091 my $xml = shift;
2092 require C4::Charset;
2093 return unless defined $xml and $xml ne "";
2094 my $marc = MARC::Record->new_from_xml(C4::Charset::StripNonXmlChars($xml),'UTF-8');
2095 my $unlinked_subfields = [];
2096 my @fields = $marc->fields();
2097 if ($#fields > -1) {
2098 foreach my $subfield ($fields[0]->subfields()) {
2099 push @$unlinked_subfields, $subfield->[0] => $subfield->[1];
2102 return $unlinked_subfields;
2105 =head2 GetAnalyticsCount
2107 $count= &GetAnalyticsCount($itemnumber)
2109 counts Usage of itemnumber in Analytical bibliorecords.
2111 =cut
2113 sub GetAnalyticsCount {
2114 my ($itemnumber) = @_;
2116 ### ZOOM search here
2117 my $query;
2118 $query= "hi=".$itemnumber;
2119 my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
2120 my ($err,$res,$result) = $searcher->simple_search_compat($query,0,10);
2121 return ($result);
2124 =head2 SearchItemsByField
2126 my $items = SearchItemsByField($field, $value);
2128 SearchItemsByField will search for items on a specific given field.
2129 For instance you can search all items with a specific stocknumber like this:
2131 my $items = SearchItemsByField('stocknumber', $stocknumber);
2133 =cut
2135 sub SearchItemsByField {
2136 my ($field, $value) = @_;
2138 my $filters = {
2139 field => $field,
2140 query => $value,
2143 my ($results) = SearchItems($filters);
2144 return $results;
2147 sub _SearchItems_build_where_fragment {
2148 my ($filter) = @_;
2150 my $dbh = C4::Context->dbh;
2152 my $where_fragment;
2153 if (exists($filter->{conjunction})) {
2154 my (@where_strs, @where_args);
2155 foreach my $f (@{ $filter->{filters} }) {
2156 my $fragment = _SearchItems_build_where_fragment($f);
2157 if ($fragment) {
2158 push @where_strs, $fragment->{str};
2159 push @where_args, @{ $fragment->{args} };
2162 my $where_str = '';
2163 if (@where_strs) {
2164 $where_str = '(' . join (' ' . $filter->{conjunction} . ' ', @where_strs) . ')';
2165 $where_fragment = {
2166 str => $where_str,
2167 args => \@where_args,
2170 } else {
2171 my @columns = Koha::Database->new()->schema()->resultset('Item')->result_source->columns;
2172 push @columns, Koha::Database->new()->schema()->resultset('Biblio')->result_source->columns;
2173 push @columns, Koha::Database->new()->schema()->resultset('Biblioitem')->result_source->columns;
2174 my @operators = qw(= != > < >= <= like);
2175 my $field = $filter->{field};
2176 if ( (0 < grep /^$field$/, @columns) or (substr($field, 0, 5) eq 'marc:') ) {
2177 my $op = $filter->{operator};
2178 my $query = $filter->{query};
2180 if (!$op or (0 == grep /^$op$/, @operators)) {
2181 $op = '='; # default operator
2184 my $column;
2185 if ($field =~ /^marc:(\d{3})(?:\$(\w))?$/) {
2186 my $marcfield = $1;
2187 my $marcsubfield = $2;
2188 my ($kohafield) = $dbh->selectrow_array(q|
2189 SELECT kohafield FROM marc_subfield_structure
2190 WHERE tagfield=? AND tagsubfield=? AND frameworkcode=''
2191 |, undef, $marcfield, $marcsubfield);
2193 if ($kohafield) {
2194 $column = $kohafield;
2195 } else {
2196 # MARC field is not linked to a DB field so we need to use
2197 # ExtractValue on marcxml from biblio_metadata or
2198 # items.more_subfields_xml, depending on the MARC field.
2199 my $xpath;
2200 my $sqlfield;
2201 my ($itemfield) = C4::Biblio::GetMarcFromKohaField('items.itemnumber');
2202 if ($marcfield eq $itemfield) {
2203 $sqlfield = 'more_subfields_xml';
2204 $xpath = '//record/datafield/subfield[@code="' . $marcsubfield . '"]';
2205 } else {
2206 $sqlfield = 'metadata'; # From biblio_metadata
2207 if ($marcfield < 10) {
2208 $xpath = "//record/controlfield[\@tag=\"$marcfield\"]";
2209 } else {
2210 $xpath = "//record/datafield[\@tag=\"$marcfield\"]/subfield[\@code=\"$marcsubfield\"]";
2213 $column = "ExtractValue($sqlfield, '$xpath')";
2215 } else {
2216 $column = $field;
2219 if (ref $query eq 'ARRAY') {
2220 if ($op eq '=') {
2221 $op = 'IN';
2222 } elsif ($op eq '!=') {
2223 $op = 'NOT IN';
2225 $where_fragment = {
2226 str => "$column $op (" . join (',', ('?') x @$query) . ")",
2227 args => $query,
2229 } else {
2230 $where_fragment = {
2231 str => "$column $op ?",
2232 args => [ $query ],
2238 return $where_fragment;
2241 =head2 SearchItems
2243 my ($items, $total) = SearchItems($filter, $params);
2245 Perform a search among items
2247 $filter is a reference to a hash which can be a filter, or a combination of filters.
2249 A filter has the following keys:
2251 =over 2
2253 =item * field: the name of a SQL column in table items
2255 =item * query: the value to search in this column
2257 =item * operator: comparison operator. Can be one of = != > < >= <= like
2259 =back
2261 A combination of filters hash the following keys:
2263 =over 2
2265 =item * conjunction: 'AND' or 'OR'
2267 =item * filters: array ref of filters
2269 =back
2271 $params is a reference to a hash that can contain the following parameters:
2273 =over 2
2275 =item * rows: Number of items to return. 0 returns everything (default: 0)
2277 =item * page: Page to return (return items from (page-1)*rows to (page*rows)-1)
2278 (default: 1)
2280 =item * sortby: A SQL column name in items table to sort on
2282 =item * sortorder: 'ASC' or 'DESC'
2284 =back
2286 =cut
2288 sub SearchItems {
2289 my ($filter, $params) = @_;
2291 $filter //= {};
2292 $params //= {};
2293 return unless ref $filter eq 'HASH';
2294 return unless ref $params eq 'HASH';
2296 # Default parameters
2297 $params->{rows} ||= 0;
2298 $params->{page} ||= 1;
2299 $params->{sortby} ||= 'itemnumber';
2300 $params->{sortorder} ||= 'ASC';
2302 my ($where_str, @where_args);
2303 my $where_fragment = _SearchItems_build_where_fragment($filter);
2304 if ($where_fragment) {
2305 $where_str = $where_fragment->{str};
2306 @where_args = @{ $where_fragment->{args} };
2309 my $dbh = C4::Context->dbh;
2310 my $query = q{
2311 SELECT SQL_CALC_FOUND_ROWS items.*
2312 FROM items
2313 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2314 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
2315 LEFT JOIN biblio_metadata ON biblio_metadata.biblionumber = biblio.biblionumber
2316 WHERE 1
2318 if (defined $where_str and $where_str ne '') {
2319 $query .= qq{ AND $where_str };
2322 $query .= q{ AND biblio_metadata.format = 'marcxml' AND biblio_metadata.marcflavour = ? };
2323 push @where_args, C4::Context->preference('marcflavour');
2325 my @columns = Koha::Database->new()->schema()->resultset('Item')->result_source->columns;
2326 push @columns, Koha::Database->new()->schema()->resultset('Biblio')->result_source->columns;
2327 push @columns, Koha::Database->new()->schema()->resultset('Biblioitem')->result_source->columns;
2328 my $sortby = (0 < grep {$params->{sortby} eq $_} @columns)
2329 ? $params->{sortby} : 'itemnumber';
2330 my $sortorder = (uc($params->{sortorder}) eq 'ASC') ? 'ASC' : 'DESC';
2331 $query .= qq{ ORDER BY $sortby $sortorder };
2333 my $rows = $params->{rows};
2334 my @limit_args;
2335 if ($rows > 0) {
2336 my $offset = $rows * ($params->{page}-1);
2337 $query .= qq { LIMIT ?, ? };
2338 push @limit_args, $offset, $rows;
2341 my $sth = $dbh->prepare($query);
2342 my $rv = $sth->execute(@where_args, @limit_args);
2344 return unless ($rv);
2345 my ($total_rows) = $dbh->selectrow_array(q{ SELECT FOUND_ROWS() });
2347 return ($sth->fetchall_arrayref({}), $total_rows);
2351 =head1 OTHER FUNCTIONS
2353 =head2 _find_value
2355 ($indicators, $value) = _find_value($tag, $subfield, $record,$encoding);
2357 Find the given $subfield in the given $tag in the given
2358 MARC::Record $record. If the subfield is found, returns
2359 the (indicators, value) pair; otherwise, (undef, undef) is
2360 returned.
2362 PROPOSITION :
2363 Such a function is used in addbiblio AND additem and serial-edit and maybe could be used in Authorities.
2364 I suggest we export it from this module.
2366 =cut
2368 sub _find_value {
2369 my ( $tagfield, $insubfield, $record, $encoding ) = @_;
2370 my @result;
2371 my $indicator;
2372 if ( $tagfield < 10 ) {
2373 if ( $record->field($tagfield) ) {
2374 push @result, $record->field($tagfield)->data();
2375 } else {
2376 push @result, "";
2378 } else {
2379 foreach my $field ( $record->field($tagfield) ) {
2380 my @subfields = $field->subfields();
2381 foreach my $subfield (@subfields) {
2382 if ( @$subfield[0] eq $insubfield ) {
2383 push @result, @$subfield[1];
2384 $indicator = $field->indicator(1) . $field->indicator(2);
2389 return ( $indicator, @result );
2393 =head2 PrepareItemrecordDisplay
2395 PrepareItemrecordDisplay($itemrecord,$bibnum,$itemumber,$frameworkcode);
2397 Returns a hash with all the fields for Display a given item data in a template
2399 The $frameworkcode returns the item for the given frameworkcode, ONLY if bibnum is not provided
2401 =cut
2403 sub PrepareItemrecordDisplay {
2405 my ( $bibnum, $itemnum, $defaultvalues, $frameworkcode ) = @_;
2407 my $dbh = C4::Context->dbh;
2408 $frameworkcode = C4::Biblio::GetFrameworkCode($bibnum) if $bibnum;
2409 my ( $itemtagfield, $itemtagsubfield ) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber", $frameworkcode );
2411 # Note: $tagslib obtained from GetMarcStructure() in 'unsafe' mode is
2412 # a shared data structure. No plugin (including custom ones) should change
2413 # its contents. See also GetMarcStructure.
2414 my $tagslib = GetMarcStructure( 1, $frameworkcode, { unsafe => 1 } );
2416 # return nothing if we don't have found an existing framework.
2417 return q{} unless $tagslib;
2418 my $itemrecord;
2419 if ($itemnum) {
2420 $itemrecord = C4::Items::GetMarcItem( $bibnum, $itemnum );
2422 my @loop_data;
2424 my $branch_limit = C4::Context->userenv ? C4::Context->userenv->{"branch"} : "";
2425 my $query = qq{
2426 SELECT authorised_value,lib FROM authorised_values
2428 $query .= qq{
2429 LEFT JOIN authorised_values_branches ON ( id = av_id )
2430 } if $branch_limit;
2431 $query .= qq{
2432 WHERE category = ?
2434 $query .= qq{ AND ( branchcode = ? OR branchcode IS NULL )} if $branch_limit;
2435 $query .= qq{ ORDER BY lib};
2436 my $authorised_values_sth = $dbh->prepare( $query );
2437 foreach my $tag ( sort keys %{$tagslib} ) {
2438 if ( $tag ne '' ) {
2440 # loop through each subfield
2441 my $cntsubf;
2442 foreach my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
2443 next if IsMarcStructureInternal($tagslib->{$tag}{$subfield});
2444 next unless ( $tagslib->{$tag}->{$subfield}->{'tab'} );
2445 next if ( $tagslib->{$tag}->{$subfield}->{'tab'} ne "10" );
2446 my %subfield_data;
2447 $subfield_data{tag} = $tag;
2448 $subfield_data{subfield} = $subfield;
2449 $subfield_data{countsubfield} = $cntsubf++;
2450 $subfield_data{kohafield} = $tagslib->{$tag}->{$subfield}->{'kohafield'};
2451 $subfield_data{id} = "tag_".$tag."_subfield_".$subfield."_".int(rand(1000000));
2453 # $subfield_data{marc_lib}=$tagslib->{$tag}->{$subfield}->{lib};
2454 $subfield_data{marc_lib} = $tagslib->{$tag}->{$subfield}->{lib};
2455 $subfield_data{mandatory} = $tagslib->{$tag}->{$subfield}->{mandatory};
2456 $subfield_data{repeatable} = $tagslib->{$tag}->{$subfield}->{repeatable};
2457 $subfield_data{hidden} = "display:none"
2458 if ( ( $tagslib->{$tag}->{$subfield}->{hidden} > 4 )
2459 || ( $tagslib->{$tag}->{$subfield}->{hidden} < -4 ) );
2460 my ( $x, $defaultvalue );
2461 if ($itemrecord) {
2462 ( $x, $defaultvalue ) = _find_value( $tag, $subfield, $itemrecord );
2464 $defaultvalue = $tagslib->{$tag}->{$subfield}->{defaultvalue} unless $defaultvalue;
2465 if ( !defined $defaultvalue ) {
2466 $defaultvalue = q||;
2467 } else {
2468 $defaultvalue =~ s/"/&quot;/g;
2471 my $maxlength = $tagslib->{$tag}->{$subfield}->{maxlength};
2473 # search for itemcallnumber if applicable
2474 if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq 'items.itemcallnumber'
2475 && C4::Context->preference('itemcallnumber') ) {
2476 my $CNtag = substr( C4::Context->preference('itemcallnumber'), 0, 3 );
2477 my $CNsubfield = substr( C4::Context->preference('itemcallnumber'), 3, 1 );
2478 if ( $itemrecord and my $field = $itemrecord->field($CNtag) ) {
2479 $defaultvalue = $field->subfield($CNsubfield);
2482 if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq 'items.itemcallnumber'
2483 && $defaultvalues
2484 && $defaultvalues->{'callnumber'} ) {
2485 if( $itemrecord and $defaultvalues and not $itemrecord->subfield($tag,$subfield) ){
2486 # if the item record exists, only use default value if the item has no callnumber
2487 $defaultvalue = $defaultvalues->{callnumber};
2488 } elsif ( !$itemrecord and $defaultvalues ) {
2489 # if the item record *doesn't* exists, always use the default value
2490 $defaultvalue = $defaultvalues->{callnumber};
2493 if ( ( $tagslib->{$tag}->{$subfield}->{kohafield} eq 'items.holdingbranch' || $tagslib->{$tag}->{$subfield}->{kohafield} eq 'items.homebranch' )
2494 && $defaultvalues
2495 && $defaultvalues->{'branchcode'} ) {
2496 if ( $itemrecord and $defaultvalues and not $itemrecord->subfield($tag,$subfield) ) {
2497 $defaultvalue = $defaultvalues->{branchcode};
2500 if ( ( $tagslib->{$tag}->{$subfield}->{kohafield} eq 'items.location' )
2501 && $defaultvalues
2502 && $defaultvalues->{'location'} ) {
2504 if ( $itemrecord and $defaultvalues and not $itemrecord->subfield($tag,$subfield) ) {
2505 # if the item record exists, only use default value if the item has no locationr
2506 $defaultvalue = $defaultvalues->{location};
2507 } elsif ( !$itemrecord and $defaultvalues ) {
2508 # if the item record *doesn't* exists, always use the default value
2509 $defaultvalue = $defaultvalues->{location};
2512 if ( $tagslib->{$tag}->{$subfield}->{authorised_value} ) {
2513 my @authorised_values;
2514 my %authorised_lib;
2516 # builds list, depending on authorised value...
2517 #---- branch
2518 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
2519 if ( ( C4::Context->preference("IndependentBranches") )
2520 && !C4::Context->IsSuperLibrarian() ) {
2521 my $sth = $dbh->prepare( "SELECT branchcode,branchname FROM branches WHERE branchcode = ? ORDER BY branchname" );
2522 $sth->execute( C4::Context->userenv->{branch} );
2523 push @authorised_values, ""
2524 unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2525 while ( my ( $branchcode, $branchname ) = $sth->fetchrow_array ) {
2526 push @authorised_values, $branchcode;
2527 $authorised_lib{$branchcode} = $branchname;
2529 } else {
2530 my $sth = $dbh->prepare( "SELECT branchcode,branchname FROM branches ORDER BY branchname" );
2531 $sth->execute;
2532 push @authorised_values, ""
2533 unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2534 while ( my ( $branchcode, $branchname ) = $sth->fetchrow_array ) {
2535 push @authorised_values, $branchcode;
2536 $authorised_lib{$branchcode} = $branchname;
2540 $defaultvalue = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
2541 if ( $defaultvalues and $defaultvalues->{branchcode} ) {
2542 $defaultvalue = $defaultvalues->{branchcode};
2545 #----- itemtypes
2546 } elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "itemtypes" ) {
2547 my $itemtypes = Koha::ItemTypes->search_with_localization;
2548 push @authorised_values, ""
2549 unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2550 while ( my $itemtype = $itemtypes->next ) {
2551 push @authorised_values, $itemtype->itemtype;
2552 $authorised_lib{$itemtype->itemtype} = $itemtype->translated_description;
2554 if ($defaultvalues && $defaultvalues->{'itemtype'}) {
2555 $defaultvalue = $defaultvalues->{'itemtype'};
2558 #---- class_sources
2559 } elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "cn_source" ) {
2560 push @authorised_values, "" unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2562 my $class_sources = GetClassSources();
2563 my $default_source = C4::Context->preference("DefaultClassificationSource");
2565 foreach my $class_source (sort keys %$class_sources) {
2566 next unless $class_sources->{$class_source}->{'used'} or
2567 ($class_source eq $default_source);
2568 push @authorised_values, $class_source;
2569 $authorised_lib{$class_source} = $class_sources->{$class_source}->{'description'};
2572 $defaultvalue = $default_source;
2574 #---- "true" authorised value
2575 } else {
2576 $authorised_values_sth->execute(
2577 $tagslib->{$tag}->{$subfield}->{authorised_value},
2578 $branch_limit ? $branch_limit : ()
2580 push @authorised_values, ""
2581 unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2582 while ( my ( $value, $lib ) = $authorised_values_sth->fetchrow_array ) {
2583 push @authorised_values, $value;
2584 $authorised_lib{$value} = $lib;
2587 $subfield_data{marc_value} = {
2588 type => 'select',
2589 values => \@authorised_values,
2590 default => "$defaultvalue",
2591 labels => \%authorised_lib,
2593 } elsif ( $tagslib->{$tag}->{$subfield}->{value_builder} ) {
2594 # it is a plugin
2595 require Koha::FrameworkPlugin;
2596 my $plugin = Koha::FrameworkPlugin->new({
2597 name => $tagslib->{$tag}->{$subfield}->{value_builder},
2598 item_style => 1,
2600 my $pars = { dbh => $dbh, record => undef, tagslib =>$tagslib, id => $subfield_data{id}, tabloop => undef };
2601 $plugin->build( $pars );
2602 if ( $itemrecord and my $field = $itemrecord->field($tag) ) {
2603 $defaultvalue = $field->subfield($subfield);
2605 if( !$plugin->errstr ) {
2606 #TODO Move html to template; see report 12176/13397
2607 my $tab= $plugin->noclick? '-1': '';
2608 my $class= $plugin->noclick? ' disabled': '';
2609 my $title= $plugin->noclick? 'No popup': 'Tag editor';
2610 $subfield_data{marc_value} = qq[<input type="text" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$maxlength" value="$defaultvalue" /><a href="#" id="buttonDot_$subfield_data{id}" tabindex="$tab" class="buttonDot $class" title="$title">...</a>\n].$plugin->javascript;
2611 } else {
2612 warn $plugin->errstr;
2613 $subfield_data{marc_value} = qq(<input type="text" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$maxlength" value="$defaultvalue" />); # supply default input form
2616 elsif ( $tag eq '' ) { # it's an hidden field
2617 $subfield_data{marc_value} = qq(<input type="hidden" tabindex="1" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$maxlength" value="$defaultvalue" />);
2619 elsif ( $tagslib->{$tag}->{$subfield}->{'hidden'} ) { # FIXME: shouldn't input type be "hidden" ?
2620 $subfield_data{marc_value} = qq(<input type="text" tabindex="1" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$maxlength" value="$defaultvalue" />);
2622 elsif ( length($defaultvalue) > 100
2623 or (C4::Context->preference("marcflavour") eq "UNIMARC" and
2624 300 <= $tag && $tag < 400 && $subfield eq 'a' )
2625 or (C4::Context->preference("marcflavour") eq "MARC21" and
2626 500 <= $tag && $tag < 600 )
2628 # oversize field (textarea)
2629 $subfield_data{marc_value} = qq(<textarea tabindex="1" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$maxlength">$defaultvalue</textarea>\n");
2630 } else {
2631 $subfield_data{marc_value} = "<input type=\"text\" name=\"field_value\" value=\"$defaultvalue\" size=\"50\" maxlength=\"$maxlength\" />";
2633 push( @loop_data, \%subfield_data );
2637 my $itemnumber;
2638 if ( $itemrecord && $itemrecord->field($itemtagfield) ) {
2639 $itemnumber = $itemrecord->subfield( $itemtagfield, $itemtagsubfield );
2641 return {
2642 'itemtagfield' => $itemtagfield,
2643 'itemtagsubfield' => $itemtagsubfield,
2644 'itemnumber' => $itemnumber,
2645 'iteminformation' => \@loop_data
2649 sub ToggleNewStatus {
2650 my ( $params ) = @_;
2651 my @rules = @{ $params->{rules} };
2652 my $report_only = $params->{report_only};
2654 my $dbh = C4::Context->dbh;
2655 my @errors;
2656 my @item_columns = map { "items.$_" } Koha::Items->columns;
2657 my @biblioitem_columns = map { "biblioitems.$_" } Koha::Biblioitems->columns;
2658 my $report;
2659 for my $rule ( @rules ) {
2660 my $age = $rule->{age};
2661 my $conditions = $rule->{conditions};
2662 my $substitutions = $rule->{substitutions};
2663 my @params;
2665 my $query = q|
2666 SELECT items.biblionumber, items.itemnumber
2667 FROM items
2668 LEFT JOIN biblioitems ON biblioitems.biblionumber = items.biblionumber
2669 WHERE 1
2671 for my $condition ( @$conditions ) {
2672 if (
2673 grep {/^$condition->{field}$/} @item_columns
2674 or grep {/^$condition->{field}$/} @biblioitem_columns
2676 if ( $condition->{value} =~ /\|/ ) {
2677 my @values = split /\|/, $condition->{value};
2678 $query .= qq| AND $condition->{field} IN (|
2679 . join( ',', ('?') x scalar @values )
2680 . q|)|;
2681 push @params, @values;
2682 } else {
2683 $query .= qq| AND $condition->{field} = ?|;
2684 push @params, $condition->{value};
2688 if ( defined $age ) {
2689 $query .= q| AND TO_DAYS(NOW()) - TO_DAYS(dateaccessioned) >= ? |;
2690 push @params, $age;
2692 my $sth = $dbh->prepare($query);
2693 $sth->execute( @params );
2694 while ( my $values = $sth->fetchrow_hashref ) {
2695 my $biblionumber = $values->{biblionumber};
2696 my $itemnumber = $values->{itemnumber};
2697 my $item = C4::Items::GetItem( $itemnumber );
2698 for my $substitution ( @$substitutions ) {
2699 next unless $substitution->{field};
2700 C4::Items::ModItem( {$substitution->{field} => $substitution->{value}}, $biblionumber, $itemnumber )
2701 unless $report_only;
2702 push @{ $report->{$itemnumber} }, $substitution;
2707 return $report;