Modified log reporting to allow multiple modules to be selected.
[koha.git] / C4 / Items.pm
blob0f7d6a30f367f5f3bf12f3bd3eef42a835b0ad4f
1 package C4::Items;
3 # Copyright 2007 LibLime, Inc.
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
20 use strict;
22 use C4::Context;
23 use C4::Koha;
24 use C4::Biblio;
25 use C4::Dates qw/format_date format_date_in_iso/;
26 use MARC::Record;
27 use C4::ClassSource;
28 use C4::Log;
29 use C4::Branch;
30 require C4::Reserves;
31 use C4::Charset;
33 use vars qw($VERSION @ISA @EXPORT);
35 BEGIN {
36 $VERSION = 3.01;
38 require Exporter;
39 @ISA = qw( Exporter );
41 # function exports
42 @EXPORT = qw(
43 GetItem
44 AddItemFromMarc
45 AddItem
46 AddItemBatchFromMarc
47 ModItemFromMarc
48 ModItem
49 ModDateLastSeen
50 ModItemTransfer
51 DelItem
53 CheckItemPreSave
55 GetItemStatus
56 GetItemLocation
57 GetLostItems
58 GetItemsForInventory
59 GetItemsCount
60 GetItemInfosOf
61 GetItemsByBiblioitemnumber
62 GetItemsInfo
63 get_itemnumbers_of
64 GetItemnumberFromBarcode
68 =head1 NAME
70 C4::Items - item management functions
72 =head1 DESCRIPTION
74 This module contains an API for manipulating item
75 records in Koha, and is used by cataloguing, circulation,
76 acquisitions, and serials management.
78 A Koha item record is stored in two places: the
79 items table and embedded in a MARC tag in the XML
80 version of the associated bib record in C<biblioitems.marcxml>.
81 This is done to allow the item information to be readily
82 indexed (e.g., by Zebra), but means that each item
83 modification transaction must keep the items table
84 and the MARC XML in sync at all times.
86 Consequently, all code that creates, modifies, or deletes
87 item records B<must> use an appropriate function from
88 C<C4::Items>. If no existing function is suitable, it is
89 better to add one to C<C4::Items> than to use add
90 one-off SQL statements to add or modify items.
92 The items table will be considered authoritative. In other
93 words, if there is ever a discrepancy between the items
94 table and the MARC XML, the items table should be considered
95 accurate.
97 =head1 HISTORICAL NOTE
99 Most of the functions in C<C4::Items> were originally in
100 the C<C4::Biblio> module.
102 =head1 CORE EXPORTED FUNCTIONS
104 The following functions are meant for use by users
105 of C<C4::Items>
107 =cut
109 =head2 GetItem
111 =over 4
113 $item = GetItem($itemnumber,$barcode,$serial);
115 =back
117 Return item information, for a given itemnumber or barcode.
118 The return value is a hashref mapping item column
119 names to values. If C<$serial> is true, include serial publication data.
121 =cut
123 sub GetItem {
124 my ($itemnumber,$barcode, $serial) = @_;
125 my $dbh = C4::Context->dbh;
126 my $data;
127 if ($itemnumber) {
128 my $sth = $dbh->prepare("
129 SELECT * FROM items
130 WHERE itemnumber = ?");
131 $sth->execute($itemnumber);
132 $data = $sth->fetchrow_hashref;
133 } else {
134 my $sth = $dbh->prepare("
135 SELECT * FROM items
136 WHERE barcode = ?"
138 $sth->execute($barcode);
139 $data = $sth->fetchrow_hashref;
141 if ( $serial) {
142 my $ssth = $dbh->prepare("SELECT serialseq,publisheddate from serialitems left join serial on serialitems.serialid=serial.serialid where serialitems.itemnumber=?");
143 $ssth->execute($data->{'itemnumber'}) ;
144 ($data->{'serialseq'} , $data->{'publisheddate'}) = $ssth->fetchrow_array();
145 warn $data->{'serialseq'} , $data->{'publisheddate'};
147 #if we don't have an items.itype, use biblioitems.itemtype.
148 if( ! $data->{'itype'} ) {
149 my $sth = $dbh->prepare("SELECT itemtype FROM biblioitems WHERE biblionumber = ?");
150 $sth->execute($data->{'biblionumber'});
151 ($data->{'itype'}) = $sth->fetchrow_array;
153 return $data;
154 } # sub GetItem
156 =head2 AddItemFromMarc
158 =over 4
160 my ($biblionumber, $biblioitemnumber, $itemnumber)
161 = AddItemFromMarc($source_item_marc, $biblionumber);
163 =back
165 Given a MARC::Record object containing an embedded item
166 record and a biblionumber, create a new item record.
168 =cut
170 sub AddItemFromMarc {
171 my ( $source_item_marc, $biblionumber ) = @_;
172 my $dbh = C4::Context->dbh;
174 # parse item hash from MARC
175 my $frameworkcode = GetFrameworkCode( $biblionumber );
176 my $item = &TransformMarcToKoha( $dbh, $source_item_marc, $frameworkcode );
177 my $unlinked_item_subfields = _get_unlinked_item_subfields($source_item_marc, $frameworkcode);
178 return AddItem($item, $biblionumber, $dbh, $frameworkcode, $unlinked_item_subfields);
181 =head2 AddItem
183 =over 4
185 my ($biblionumber, $biblioitemnumber, $itemnumber)
186 = AddItem($item, $biblionumber[, $dbh, $frameworkcode, $unlinked_item_subfields]);
188 =back
190 Given a hash containing item column names as keys,
191 create a new Koha item record.
193 The first two optional parameters (C<$dbh> and C<$frameworkcode>)
194 do not need to be supplied for general use; they exist
195 simply to allow them to be picked up from AddItemFromMarc.
197 The final optional parameter, C<$unlinked_item_subfields>, contains
198 an arrayref containing subfields present in the original MARC
199 representation of the item (e.g., from the item editor) that are
200 not mapped to C<items> columns directly but should instead
201 be stored in C<items.more_subfields_xml> and included in
202 the biblio items tag for display and indexing.
204 =cut
206 sub AddItem {
207 my $item = shift;
208 my $biblionumber = shift;
210 my $dbh = @_ ? shift : C4::Context->dbh;
211 my $frameworkcode = @_ ? shift : GetFrameworkCode( $biblionumber );
212 my $unlinked_item_subfields;
213 if (@_) {
214 $unlinked_item_subfields = shift
217 # needs old biblionumber and biblioitemnumber
218 $item->{'biblionumber'} = $biblionumber;
219 my $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=?");
220 $sth->execute( $item->{'biblionumber'} );
221 ($item->{'biblioitemnumber'}) = $sth->fetchrow;
223 _set_defaults_for_add($item);
224 _set_derived_columns_for_add($item);
225 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
226 # FIXME - checks here
227 unless ( $item->{itype} ) { # default to biblioitem.itemtype if no itype
228 my $itype_sth = $dbh->prepare("SELECT itemtype FROM biblioitems WHERE biblionumber = ?");
229 $itype_sth->execute( $item->{'biblionumber'} );
230 ( $item->{'itype'} ) = $itype_sth->fetchrow_array;
233 my ( $itemnumber, $error ) = _koha_new_item( $item, $item->{barcode} );
234 $item->{'itemnumber'} = $itemnumber;
236 # create MARC tag representing item and add to bib
237 my $new_item_marc = _marc_from_item_hash($item, $frameworkcode, $unlinked_item_subfields);
238 _add_item_field_to_biblio($new_item_marc, $item->{'biblionumber'}, $frameworkcode );
240 logaction("CATALOGUING", "ADD", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
242 return ($item->{biblionumber}, $item->{biblioitemnumber}, $itemnumber);
245 =head2 AddItemBatchFromMarc
247 =over 4
249 ($itemnumber_ref, $error_ref) = AddItemBatchFromMarc($record, $biblionumber, $biblioitemnumber, $frameworkcode);
251 =back
253 Efficiently create item records from a MARC biblio record with
254 embedded item fields. This routine is suitable for batch jobs.
256 This API assumes that the bib record has already been
257 saved to the C<biblio> and C<biblioitems> tables. It does
258 not expect that C<biblioitems.marc> and C<biblioitems.marcxml>
259 are populated, but it will do so via a call to ModBibiloMarc.
261 The goal of this API is to have a similar effect to using AddBiblio
262 and AddItems in succession, but without inefficient repeated
263 parsing of the MARC XML bib record.
265 This function returns an arrayref of new itemsnumbers and an arrayref of item
266 errors encountered during the processing. Each entry in the errors
267 list is a hashref containing the following keys:
269 =over 2
271 =item item_sequence
273 Sequence number of original item tag in the MARC record.
275 =item item_barcode
277 Item barcode, provide to assist in the construction of
278 useful error messages.
280 =item error_condition
282 Code representing the error condition. Can be 'duplicate_barcode',
283 'invalid_homebranch', or 'invalid_holdingbranch'.
285 =item error_information
287 Additional information appropriate to the error condition.
289 =back
291 =cut
293 sub AddItemBatchFromMarc {
294 my ($record, $biblionumber, $biblioitemnumber, $frameworkcode) = @_;
295 my $error;
296 my @itemnumbers = ();
297 my @errors = ();
298 my $dbh = C4::Context->dbh;
300 # loop through the item tags and start creating items
301 my @bad_item_fields = ();
302 my ($itemtag, $itemsubfield) = &GetMarcFromKohaField("items.itemnumber",'');
303 my $item_sequence_num = 0;
304 ITEMFIELD: foreach my $item_field ($record->field($itemtag)) {
305 $item_sequence_num++;
306 # we take the item field and stick it into a new
307 # MARC record -- this is required so far because (FIXME)
308 # TransformMarcToKoha requires a MARC::Record, not a MARC::Field
309 # and there is no TransformMarcFieldToKoha
310 my $temp_item_marc = MARC::Record->new();
311 $temp_item_marc->append_fields($item_field);
313 # add biblionumber and biblioitemnumber
314 my $item = TransformMarcToKoha( $dbh, $temp_item_marc, $frameworkcode, 'items' );
315 my $unlinked_item_subfields = _get_unlinked_item_subfields($temp_item_marc, $frameworkcode);
316 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
317 $item->{'biblionumber'} = $biblionumber;
318 $item->{'biblioitemnumber'} = $biblioitemnumber;
320 # check for duplicate barcode
321 my %item_errors = CheckItemPreSave($item);
322 if (%item_errors) {
323 push @errors, _repack_item_errors($item_sequence_num, $item, \%item_errors);
324 push @bad_item_fields, $item_field;
325 next ITEMFIELD;
328 _set_defaults_for_add($item);
329 _set_derived_columns_for_add($item);
330 my ( $itemnumber, $error ) = _koha_new_item( $item, $item->{barcode} );
331 warn $error if $error;
332 push @itemnumbers, $itemnumber; # FIXME not checking error
333 $item->{'itemnumber'} = $itemnumber;
335 logaction("CATALOGUING", "ADD", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
337 my $new_item_marc = _marc_from_item_hash($item, $frameworkcode, $unlinked_item_subfields);
338 $item_field->replace_with($new_item_marc->field($itemtag));
341 # remove any MARC item fields for rejected items
342 foreach my $item_field (@bad_item_fields) {
343 $record->delete_field($item_field);
346 # update the MARC biblio
347 $biblionumber = ModBiblioMarc( $record, $biblionumber, $frameworkcode );
349 return (\@itemnumbers, \@errors);
352 =head2 ModItemFromMarc
354 =over 4
356 ModItemFromMarc($item_marc, $biblionumber, $itemnumber);
358 =back
360 This function updates an item record based on a supplied
361 C<MARC::Record> object containing an embedded item field.
362 This API is meant for the use of C<additem.pl>; for
363 other purposes, C<ModItem> should be used.
365 This function uses the hash %default_values_for_mod_from_marc,
366 which contains default values for item fields to
367 apply when modifying an item. This is needed beccause
368 if an item field's value is cleared, TransformMarcToKoha
369 does not include the column in the
370 hash that's passed to ModItem, which without
371 use of this hash makes it impossible to clear
372 an item field's value. See bug 2466.
374 Note that only columns that can be directly
375 changed from the cataloging and serials
376 item editors are included in this hash.
378 =cut
380 my %default_values_for_mod_from_marc = (
381 barcode => undef,
382 booksellerid => undef,
383 ccode => undef,
384 'items.cn_source' => undef,
385 copynumber => undef,
386 damaged => 0,
387 dateaccessioned => undef,
388 enumchron => undef,
389 holdingbranch => undef,
390 homebranch => undef,
391 itemcallnumber => undef,
392 itemlost => 0,
393 itemnotes => undef,
394 itype => undef,
395 location => undef,
396 materials => undef,
397 notforloan => 0,
398 paidfor => undef,
399 price => undef,
400 replacementprice => undef,
401 replacementpricedate => undef,
402 restricted => undef,
403 stack => undef,
404 uri => undef,
405 wthdrawn => 0,
408 sub ModItemFromMarc {
409 my $item_marc = shift;
410 my $biblionumber = shift;
411 my $itemnumber = shift;
413 my $dbh = C4::Context->dbh;
414 my $frameworkcode = GetFrameworkCode( $biblionumber );
415 my $item = &TransformMarcToKoha( $dbh, $item_marc, $frameworkcode );
416 foreach my $item_field (keys %default_values_for_mod_from_marc) {
417 $item->{$item_field} = $default_values_for_mod_from_marc{$item_field} unless exists $item->{$item_field};
419 my $unlinked_item_subfields = _get_unlinked_item_subfields($item_marc, $frameworkcode);
421 return ModItem($item, $biblionumber, $itemnumber, $dbh, $frameworkcode, $unlinked_item_subfields);
424 =head2 ModItem
426 =over 4
428 ModItem({ column => $newvalue }, $biblionumber, $itemnumber[, $original_item_marc]);
430 =back
432 Change one or more columns in an item record and update
433 the MARC representation of the item.
435 The first argument is a hashref mapping from item column
436 names to the new values. The second and third arguments
437 are the biblionumber and itemnumber, respectively.
439 The fourth, optional parameter, C<$unlinked_item_subfields>, contains
440 an arrayref containing subfields present in the original MARC
441 representation of the item (e.g., from the item editor) that are
442 not mapped to C<items> columns directly but should instead
443 be stored in C<items.more_subfields_xml> and included in
444 the biblio items tag for display and indexing.
446 If one of the changed columns is used to calculate
447 the derived value of a column such as C<items.cn_sort>,
448 this routine will perform the necessary calculation
449 and set the value.
451 =cut
453 sub ModItem {
454 my $item = shift;
455 my $biblionumber = shift;
456 my $itemnumber = shift;
458 # if $biblionumber is undefined, get it from the current item
459 unless (defined $biblionumber) {
460 $biblionumber = _get_single_item_column('biblionumber', $itemnumber);
463 my $dbh = @_ ? shift : C4::Context->dbh;
464 my $frameworkcode = @_ ? shift : GetFrameworkCode( $biblionumber );
466 my $unlinked_item_subfields;
467 if (@_) {
468 $unlinked_item_subfields = shift;
469 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
472 $item->{'itemnumber'} = $itemnumber or return undef;
473 _set_derived_columns_for_mod($item);
474 _do_column_fixes_for_mod($item);
475 # FIXME add checks
476 # duplicate barcode
477 # attempt to change itemnumber
478 # attempt to change biblionumber (if we want
479 # an API to relink an item to a different bib,
480 # it should be a separate function)
482 # update items table
483 _koha_modify_item($item);
485 # update biblio MARC XML
486 my $whole_item = GetItem($itemnumber) or die "FAILED GetItem($itemnumber)";
488 unless (defined $unlinked_item_subfields) {
489 $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($whole_item->{'more_subfields_xml'});
491 my $new_item_marc = _marc_from_item_hash($whole_item, $frameworkcode, $unlinked_item_subfields)
492 or die "FAILED _marc_from_item_hash($whole_item, $frameworkcode)";
494 _replace_item_field_in_biblio($new_item_marc, $biblionumber, $itemnumber, $frameworkcode);
495 ($new_item_marc eq '0') and die "$new_item_marc is '0', not hashref"; # logaction line would crash anyway
496 logaction("CATALOGUING", "MODIFY", $itemnumber, $new_item_marc->as_formatted) if C4::Context->preference("CataloguingLog");
499 =head2 ModItemTransfer
501 =over 4
503 ModItemTransfer($itenumber, $frombranch, $tobranch);
505 =back
507 Marks an item as being transferred from one branch
508 to another.
510 =cut
512 sub ModItemTransfer {
513 my ( $itemnumber, $frombranch, $tobranch ) = @_;
515 my $dbh = C4::Context->dbh;
517 #new entry in branchtransfers....
518 my $sth = $dbh->prepare(
519 "INSERT INTO branchtransfers (itemnumber, frombranch, datesent, tobranch)
520 VALUES (?, ?, NOW(), ?)");
521 $sth->execute($itemnumber, $frombranch, $tobranch);
523 ModItem({ holdingbranch => $tobranch }, undef, $itemnumber);
524 ModDateLastSeen($itemnumber);
525 return;
528 =head2 ModDateLastSeen
530 =over 4
532 ModDateLastSeen($itemnum);
534 =back
536 Mark item as seen. Is called when an item is issued, returned or manually marked during inventory/stocktaking.
537 C<$itemnum> is the item number
539 =cut
541 sub ModDateLastSeen {
542 my ($itemnumber) = @_;
544 my $today = C4::Dates->new();
545 ModItem({ itemlost => 0, datelastseen => $today->output("iso") }, undef, $itemnumber);
548 =head2 DelItem
550 =over 4
552 DelItem($biblionumber, $itemnumber);
554 =back
556 Exported function (core API) for deleting an item record in Koha.
558 =cut
560 sub DelItem {
561 my ( $dbh, $biblionumber, $itemnumber ) = @_;
563 # FIXME check the item has no current issues
565 _koha_delete_item( $dbh, $itemnumber );
567 # get the MARC record
568 my $record = GetMarcBiblio($biblionumber);
569 my $frameworkcode = GetFrameworkCode($biblionumber);
571 # backup the record
572 my $copy2deleted = $dbh->prepare("UPDATE deleteditems SET marc=? WHERE itemnumber=?");
573 $copy2deleted->execute( $record->as_usmarc(), $itemnumber );
575 #search item field code
576 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField("items.itemnumber",$frameworkcode);
577 my @fields = $record->field($itemtag);
579 # delete the item specified
580 foreach my $field (@fields) {
581 if ( $field->subfield($itemsubfield) eq $itemnumber ) {
582 $record->delete_field($field);
585 &ModBiblioMarc( $record, $biblionumber, $frameworkcode );
586 logaction("CATALOGUING", "DELETE", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
589 =head2 CheckItemPreSave
591 =over 4
593 my $item_ref = TransformMarcToKoha($marc, 'items');
594 # do stuff
595 my %errors = CheckItemPreSave($item_ref);
596 if (exists $errors{'duplicate_barcode'}) {
597 print "item has duplicate barcode: ", $errors{'duplicate_barcode'}, "\n";
598 } elsif (exists $errors{'invalid_homebranch'}) {
599 print "item has invalid home branch: ", $errors{'invalid_homebranch'}, "\n";
600 } elsif (exists $errors{'invalid_holdingbranch'}) {
601 print "item has invalid holding branch: ", $errors{'invalid_holdingbranch'}, "\n";
602 } else {
603 print "item is OK";
606 =back
608 Given a hashref containing item fields, determine if it can be
609 inserted or updated in the database. Specifically, checks for
610 database integrity issues, and returns a hash containing any
611 of the following keys, if applicable.
613 =over 2
615 =item duplicate_barcode
617 Barcode, if it duplicates one already found in the database.
619 =item invalid_homebranch
621 Home branch, if not defined in branches table.
623 =item invalid_holdingbranch
625 Holding branch, if not defined in branches table.
627 =back
629 This function does NOT implement any policy-related checks,
630 e.g., whether current operator is allowed to save an
631 item that has a given branch code.
633 =cut
635 sub CheckItemPreSave {
636 my $item_ref = shift;
638 my %errors = ();
640 # check for duplicate barcode
641 if (exists $item_ref->{'barcode'} and defined $item_ref->{'barcode'}) {
642 my $existing_itemnumber = GetItemnumberFromBarcode($item_ref->{'barcode'});
643 if ($existing_itemnumber) {
644 if (!exists $item_ref->{'itemnumber'} # new item
645 or $item_ref->{'itemnumber'} != $existing_itemnumber) { # existing item
646 $errors{'duplicate_barcode'} = $item_ref->{'barcode'};
651 # check for valid home branch
652 if (exists $item_ref->{'homebranch'} and defined $item_ref->{'homebranch'}) {
653 my $branch_name = GetBranchName($item_ref->{'homebranch'});
654 unless (defined $branch_name) {
655 # relies on fact that branches.branchname is a non-NULL column,
656 # so GetBranchName returns undef only if branch does not exist
657 $errors{'invalid_homebranch'} = $item_ref->{'homebranch'};
661 # check for valid holding branch
662 if (exists $item_ref->{'holdingbranch'} and defined $item_ref->{'holdingbranch'}) {
663 my $branch_name = GetBranchName($item_ref->{'holdingbranch'});
664 unless (defined $branch_name) {
665 # relies on fact that branches.branchname is a non-NULL column,
666 # so GetBranchName returns undef only if branch does not exist
667 $errors{'invalid_holdingbranch'} = $item_ref->{'holdingbranch'};
671 return %errors;
675 =head1 EXPORTED SPECIAL ACCESSOR FUNCTIONS
677 The following functions provide various ways of
678 getting an item record, a set of item records, or
679 lists of authorized values for certain item fields.
681 Some of the functions in this group are candidates
682 for refactoring -- for example, some of the code
683 in C<GetItemsByBiblioitemnumber> and C<GetItemsInfo>
684 has copy-and-paste work.
686 =cut
688 =head2 GetItemStatus
690 =over 4
692 $itemstatushash = GetItemStatus($fwkcode);
694 =back
696 Returns a list of valid values for the
697 C<items.notforloan> field.
699 NOTE: does B<not> return an individual item's
700 status.
702 Can be MARC dependant.
703 fwkcode is optional.
704 But basically could be can be loan or not
705 Create a status selector with the following code
707 =head3 in PERL SCRIPT
709 =over 4
711 my $itemstatushash = getitemstatus;
712 my @itemstatusloop;
713 foreach my $thisstatus (keys %$itemstatushash) {
714 my %row =(value => $thisstatus,
715 statusname => $itemstatushash->{$thisstatus}->{'statusname'},
717 push @itemstatusloop, \%row;
719 $template->param(statusloop=>\@itemstatusloop);
721 =back
723 =head3 in TEMPLATE
725 =over 4
727 <select name="statusloop">
728 <option value="">Default</option>
729 <!-- TMPL_LOOP name="statusloop" -->
730 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="statusname" --></option>
731 <!-- /TMPL_LOOP -->
732 </select>
734 =back
736 =cut
738 sub GetItemStatus {
740 # returns a reference to a hash of references to status...
741 my ($fwk) = @_;
742 my %itemstatus;
743 my $dbh = C4::Context->dbh;
744 my $sth;
745 $fwk = '' unless ($fwk);
746 my ( $tag, $subfield ) =
747 GetMarcFromKohaField( "items.notforloan", $fwk );
748 if ( $tag and $subfield ) {
749 my $sth =
750 $dbh->prepare(
751 "SELECT authorised_value
752 FROM marc_subfield_structure
753 WHERE tagfield=?
754 AND tagsubfield=?
755 AND frameworkcode=?
758 $sth->execute( $tag, $subfield, $fwk );
759 if ( my ($authorisedvaluecat) = $sth->fetchrow ) {
760 my $authvalsth =
761 $dbh->prepare(
762 "SELECT authorised_value,lib
763 FROM authorised_values
764 WHERE category=?
765 ORDER BY lib
768 $authvalsth->execute($authorisedvaluecat);
769 while ( my ( $authorisedvalue, $lib ) = $authvalsth->fetchrow ) {
770 $itemstatus{$authorisedvalue} = $lib;
772 $authvalsth->finish;
773 return \%itemstatus;
774 exit 1;
776 else {
778 #No authvalue list
779 # build default
781 $sth->finish;
784 #No authvalue list
785 #build default
786 $itemstatus{"1"} = "Not For Loan";
787 return \%itemstatus;
790 =head2 GetItemLocation
792 =over 4
794 $itemlochash = GetItemLocation($fwk);
796 =back
798 Returns a list of valid values for the
799 C<items.location> field.
801 NOTE: does B<not> return an individual item's
802 location.
804 where fwk stands for an optional framework code.
805 Create a location selector with the following code
807 =head3 in PERL SCRIPT
809 =over 4
811 my $itemlochash = getitemlocation;
812 my @itemlocloop;
813 foreach my $thisloc (keys %$itemlochash) {
814 my $selected = 1 if $thisbranch eq $branch;
815 my %row =(locval => $thisloc,
816 selected => $selected,
817 locname => $itemlochash->{$thisloc},
819 push @itemlocloop, \%row;
821 $template->param(itemlocationloop => \@itemlocloop);
823 =back
825 =head3 in TEMPLATE
827 =over 4
829 <select name="location">
830 <option value="">Default</option>
831 <!-- TMPL_LOOP name="itemlocationloop" -->
832 <option value="<!-- TMPL_VAR name="locval" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="locname" --></option>
833 <!-- /TMPL_LOOP -->
834 </select>
836 =back
838 =cut
840 sub GetItemLocation {
842 # returns a reference to a hash of references to location...
843 my ($fwk) = @_;
844 my %itemlocation;
845 my $dbh = C4::Context->dbh;
846 my $sth;
847 $fwk = '' unless ($fwk);
848 my ( $tag, $subfield ) =
849 GetMarcFromKohaField( "items.location", $fwk );
850 if ( $tag and $subfield ) {
851 my $sth =
852 $dbh->prepare(
853 "SELECT authorised_value
854 FROM marc_subfield_structure
855 WHERE tagfield=?
856 AND tagsubfield=?
857 AND frameworkcode=?"
859 $sth->execute( $tag, $subfield, $fwk );
860 if ( my ($authorisedvaluecat) = $sth->fetchrow ) {
861 my $authvalsth =
862 $dbh->prepare(
863 "SELECT authorised_value,lib
864 FROM authorised_values
865 WHERE category=?
866 ORDER BY lib"
868 $authvalsth->execute($authorisedvaluecat);
869 while ( my ( $authorisedvalue, $lib ) = $authvalsth->fetchrow ) {
870 $itemlocation{$authorisedvalue} = $lib;
872 $authvalsth->finish;
873 return \%itemlocation;
874 exit 1;
876 else {
878 #No authvalue list
879 # build default
881 $sth->finish;
884 #No authvalue list
885 #build default
886 $itemlocation{"1"} = "Not For Loan";
887 return \%itemlocation;
890 =head2 GetLostItems
892 =over 4
894 $items = GetLostItems( $where, $orderby );
896 =back
898 This function gets a list of lost items.
900 =over 2
902 =item input:
904 C<$where> is a hashref. it containts a field of the items table as key
905 and the value to match as value. For example:
907 { barcode => 'abc123',
908 homebranch => 'CPL', }
910 C<$orderby> is a field of the items table by which the resultset
911 should be orderd.
913 =item return:
915 C<$items> is a reference to an array full of hashrefs with columns
916 from the "items" table as keys.
918 =item usage in the perl script:
920 my $where = { barcode => '0001548' };
921 my $items = GetLostItems( $where, "homebranch" );
922 $template->param( itemsloop => $items );
924 =back
926 =cut
928 sub GetLostItems {
929 # Getting input args.
930 my $where = shift;
931 my $orderby = shift;
932 my $dbh = C4::Context->dbh;
934 my $query = "
935 SELECT *
936 FROM items, biblio, authorised_values
937 WHERE
938 items.biblionumber = biblio.biblionumber
939 AND items.itemlost = authorised_values.authorised_value
940 AND authorised_values.category = 'LOST'
941 AND itemlost IS NOT NULL
942 AND itemlost <> 0
945 my @query_parameters;
946 foreach my $key (keys %$where) {
947 $query .= " AND $key LIKE ?";
948 push @query_parameters, "%$where->{$key}%";
950 if ( defined $orderby ) {
951 $query .= ' ORDER BY ?';
952 push @query_parameters, $orderby;
955 my $sth = $dbh->prepare($query);
956 $sth->execute( @query_parameters );
957 my $items = [];
958 while ( my $row = $sth->fetchrow_hashref ){
959 push @$items, $row;
961 return $items;
964 =head2 GetItemsForInventory
966 =over 4
968 $itemlist = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype $datelastseen, $branch, $offset, $size);
970 =back
972 Retrieve a list of title/authors/barcode/callnumber, for biblio inventory.
974 The sub returns a reference to a list of hashes, each containing
975 itemnumber, author, title, barcode, item callnumber, and date last
976 seen. It is ordered by callnumber then title.
978 The required minlocation & maxlocation parameters are used to specify a range of item callnumbers
979 the datelastseen can be used to specify that you want to see items not seen since a past date only.
980 offset & size can be used to retrieve only a part of the whole listing (defaut behaviour)
982 =cut
984 sub GetItemsForInventory {
985 my ( $minlocation, $maxlocation,$location, $itemtype, $ignoreissued, $datelastseen, $branch, $offset, $size ) = @_;
986 my $dbh = C4::Context->dbh;
987 my ( @bind_params, @where_strings );
989 my $query = <<'END_SQL';
990 SELECT items.itemnumber, barcode, itemcallnumber, title, author, biblio.biblionumber, datelastseen
991 FROM items
992 LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
993 LEFT JOIN biblioitems on items.biblionumber = biblioitems.biblionumber
994 END_SQL
996 if ($minlocation) {
997 push @where_strings, 'itemcallnumber >= ?';
998 push @bind_params, $minlocation;
1001 if ($maxlocation) {
1002 push @where_strings, 'itemcallnumber <= ?';
1003 push @bind_params, $maxlocation;
1006 if ($datelastseen) {
1007 $datelastseen = format_date_in_iso($datelastseen);
1008 push @where_strings, '(datelastseen < ? OR datelastseen IS NULL)';
1009 push @bind_params, $datelastseen;
1012 if ( $location ) {
1013 push @where_strings, 'items.location = ?';
1014 push @bind_params, $location;
1017 if ( $branch ) {
1018 push @where_strings, 'items.homebranch = ?';
1019 push @bind_params, $branch;
1022 if ( $itemtype ) {
1023 push @where_strings, 'biblioitems.itemtype = ?';
1024 push @bind_params, $itemtype;
1027 if ( $ignoreissued) {
1028 $query .= "LEFT JOIN issues ON items.itemnumber = issues.itemnumber ";
1029 push @where_strings, 'issues.date_due IS NULL';
1032 if ( @where_strings ) {
1033 $query .= 'WHERE ';
1034 $query .= join ' AND ', @where_strings;
1036 $query .= ' ORDER BY itemcallnumber, title';
1037 my $sth = $dbh->prepare($query);
1038 $sth->execute( @bind_params );
1040 my @results;
1041 $size--;
1042 while ( my $row = $sth->fetchrow_hashref ) {
1043 $offset-- if ($offset);
1044 $row->{datelastseen}=format_date($row->{datelastseen});
1045 if ( ( !$offset ) && $size ) {
1046 push @results, $row;
1047 $size--;
1050 return \@results;
1053 =head2 GetItemsCount
1055 =over 4
1056 $count = &GetItemsCount( $biblionumber);
1058 =back
1060 This function return count of item with $biblionumber
1062 =cut
1064 sub GetItemsCount {
1065 my ( $biblionumber ) = @_;
1066 my $dbh = C4::Context->dbh;
1067 my $query = "SELECT count(*)
1068 FROM items
1069 WHERE biblionumber=?";
1070 my $sth = $dbh->prepare($query);
1071 $sth->execute($biblionumber);
1072 my $count = $sth->fetchrow;
1073 $sth->finish;
1074 return ($count);
1077 =head2 GetItemInfosOf
1079 =over 4
1081 GetItemInfosOf(@itemnumbers);
1083 =back
1085 =cut
1087 sub GetItemInfosOf {
1088 my @itemnumbers = @_;
1090 my $query = '
1091 SELECT *
1092 FROM items
1093 WHERE itemnumber IN (' . join( ',', @itemnumbers ) . ')
1095 return get_infos_of( $query, 'itemnumber' );
1098 =head2 GetItemsByBiblioitemnumber
1100 =over 4
1102 GetItemsByBiblioitemnumber($biblioitemnumber);
1104 =back
1106 Returns an arrayref of hashrefs suitable for use in a TMPL_LOOP
1107 Called by C<C4::XISBN>
1109 =cut
1111 sub GetItemsByBiblioitemnumber {
1112 my ( $bibitem ) = @_;
1113 my $dbh = C4::Context->dbh;
1114 my $sth = $dbh->prepare("SELECT * FROM items WHERE items.biblioitemnumber = ?") || die $dbh->errstr;
1115 # Get all items attached to a biblioitem
1116 my $i = 0;
1117 my @results;
1118 $sth->execute($bibitem) || die $sth->errstr;
1119 while ( my $data = $sth->fetchrow_hashref ) {
1120 # Foreach item, get circulation information
1121 my $sth2 = $dbh->prepare( "SELECT * FROM issues,borrowers
1122 WHERE itemnumber = ?
1123 AND issues.borrowernumber = borrowers.borrowernumber"
1125 $sth2->execute( $data->{'itemnumber'} );
1126 if ( my $data2 = $sth2->fetchrow_hashref ) {
1127 # if item is out, set the due date and who it is out too
1128 $data->{'date_due'} = $data2->{'date_due'};
1129 $data->{'cardnumber'} = $data2->{'cardnumber'};
1130 $data->{'borrowernumber'} = $data2->{'borrowernumber'};
1132 else {
1133 # set date_due to blank, so in the template we check itemlost, and wthdrawn
1134 $data->{'date_due'} = '';
1135 } # else
1136 $sth2->finish;
1137 # Find the last 3 people who borrowed this item.
1138 my $query2 = "SELECT * FROM old_issues, borrowers WHERE itemnumber = ?
1139 AND old_issues.borrowernumber = borrowers.borrowernumber
1140 ORDER BY returndate desc,timestamp desc LIMIT 3";
1141 $sth2 = $dbh->prepare($query2) || die $dbh->errstr;
1142 $sth2->execute( $data->{'itemnumber'} ) || die $sth2->errstr;
1143 my $i2 = 0;
1144 while ( my $data2 = $sth2->fetchrow_hashref ) {
1145 $data->{"timestamp$i2"} = $data2->{'timestamp'};
1146 $data->{"card$i2"} = $data2->{'cardnumber'};
1147 $data->{"borrower$i2"} = $data2->{'borrowernumber'};
1148 $i2++;
1150 $sth2->finish;
1151 push(@results,$data);
1153 $sth->finish;
1154 return (\@results);
1157 =head2 GetItemsInfo
1159 =over 4
1161 @results = GetItemsInfo($biblionumber, $type);
1163 =back
1165 Returns information about books with the given biblionumber.
1167 C<$type> may be either C<intra> or anything else. If it is not set to
1168 C<intra>, then the search will exclude lost, very overdue, and
1169 withdrawn items.
1171 C<GetItemsInfo> returns a list of references-to-hash. Each element
1172 contains a number of keys. Most of them are table items from the
1173 C<biblio>, C<biblioitems>, C<items>, and C<itemtypes> tables in the
1174 Koha database. Other keys include:
1176 =over 2
1178 =item C<$data-E<gt>{branchname}>
1180 The name (not the code) of the branch to which the book belongs.
1182 =item C<$data-E<gt>{datelastseen}>
1184 This is simply C<items.datelastseen>, except that while the date is
1185 stored in YYYY-MM-DD format in the database, here it is converted to
1186 DD/MM/YYYY format. A NULL date is returned as C<//>.
1188 =item C<$data-E<gt>{datedue}>
1190 =item C<$data-E<gt>{class}>
1192 This is the concatenation of C<biblioitems.classification>, the book's
1193 Dewey code, and C<biblioitems.subclass>.
1195 =item C<$data-E<gt>{ocount}>
1197 I think this is the number of copies of the book available.
1199 =item C<$data-E<gt>{order}>
1201 If this is set, it is set to C<One Order>.
1203 =back
1205 =cut
1207 sub GetItemsInfo {
1208 my ( $biblionumber, $type ) = @_;
1209 my $dbh = C4::Context->dbh;
1210 # note biblioitems.* must be avoided to prevent large marc and marcxml fields from killing performance.
1211 my $query = "
1212 SELECT items.*,
1213 biblio.*,
1214 biblioitems.volume,
1215 biblioitems.number,
1216 biblioitems.itemtype,
1217 biblioitems.isbn,
1218 biblioitems.issn,
1219 biblioitems.publicationyear,
1220 biblioitems.publishercode,
1221 biblioitems.volumedate,
1222 biblioitems.volumedesc,
1223 biblioitems.lccn,
1224 biblioitems.url,
1225 items.notforloan as itemnotforloan,
1226 itemtypes.description
1227 FROM items
1228 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
1229 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
1230 LEFT JOIN itemtypes ON itemtypes.itemtype = "
1231 . (C4::Context->preference('item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype');
1232 $query .= " WHERE items.biblionumber = ? ORDER BY items.dateaccessioned desc" ;
1233 my $sth = $dbh->prepare($query);
1234 $sth->execute($biblionumber);
1235 my $i = 0;
1236 my @results;
1237 my ( $date_due, $count_reserves, $serial );
1239 my $isth = $dbh->prepare(
1240 "SELECT issues.*,borrowers.cardnumber,borrowers.surname,borrowers.firstname,borrowers.branchcode as bcode
1241 FROM issues LEFT JOIN borrowers ON issues.borrowernumber=borrowers.borrowernumber
1242 WHERE itemnumber = ?"
1244 my $ssth = $dbh->prepare("SELECT serialseq,publisheddate from serialitems left join serial on serialitems.serialid=serial.serialid where serialitems.itemnumber=? ");
1245 while ( my $data = $sth->fetchrow_hashref ) {
1246 my $datedue = '';
1247 $isth->execute( $data->{'itemnumber'} );
1248 if ( my $idata = $isth->fetchrow_hashref ) {
1249 $data->{borrowernumber} = $idata->{borrowernumber};
1250 $data->{cardnumber} = $idata->{cardnumber};
1251 $data->{surname} = $idata->{surname};
1252 $data->{firstname} = $idata->{firstname};
1253 $datedue = $idata->{'date_due'};
1254 if (C4::Context->preference("IndependantBranches")){
1255 my $userenv = C4::Context->userenv;
1256 if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
1257 $data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch});
1261 if ( $data->{'serial'}) {
1262 $ssth->execute($data->{'itemnumber'}) ;
1263 ($data->{'serialseq'} , $data->{'publisheddate'}) = $ssth->fetchrow_array();
1264 $serial = 1;
1266 if ( $datedue eq '' ) {
1267 my ( $restype, $reserves ) =
1268 C4::Reserves::CheckReserves( $data->{'itemnumber'} );
1269 if ($restype) {
1270 $count_reserves = $restype;
1273 $isth->finish;
1274 $ssth->finish;
1275 #get branch information.....
1276 my $bsth = $dbh->prepare(
1277 "SELECT * FROM branches WHERE branchcode = ?
1280 $bsth->execute( $data->{'holdingbranch'} );
1281 if ( my $bdata = $bsth->fetchrow_hashref ) {
1282 $data->{'branchname'} = $bdata->{'branchname'};
1284 $data->{'datedue'} = $datedue;
1285 $data->{'count_reserves'} = $count_reserves;
1287 # get notforloan complete status if applicable
1288 my $sthnflstatus = $dbh->prepare(
1289 'SELECT authorised_value
1290 FROM marc_subfield_structure
1291 WHERE kohafield="items.notforloan"
1295 $sthnflstatus->execute;
1296 my ($authorised_valuecode) = $sthnflstatus->fetchrow;
1297 if ($authorised_valuecode) {
1298 $sthnflstatus = $dbh->prepare(
1299 "SELECT lib FROM authorised_values
1300 WHERE category=?
1301 AND authorised_value=?"
1303 $sthnflstatus->execute( $authorised_valuecode,
1304 $data->{itemnotforloan} );
1305 my ($lib) = $sthnflstatus->fetchrow;
1306 $data->{notforloanvalue} = $lib;
1308 $data->{itypenotforloan} = $data->{notforloan} if (C4::Context->preference('item-level_itypes'));
1310 # my stack procedures
1311 my $stackstatus = $dbh->prepare(
1312 'SELECT authorised_value
1313 FROM marc_subfield_structure
1314 WHERE kohafield="items.stack"
1317 $stackstatus->execute;
1319 ($authorised_valuecode) = $stackstatus->fetchrow;
1320 if ($authorised_valuecode) {
1321 $stackstatus = $dbh->prepare(
1322 "SELECT lib
1323 FROM authorised_values
1324 WHERE category=?
1325 AND authorised_value=?
1328 $stackstatus->execute( $authorised_valuecode, $data->{stack} );
1329 my ($lib) = $stackstatus->fetchrow;
1330 $data->{stack} = $lib;
1332 # Find the last 3 people who borrowed this item.
1333 my $sth2 = $dbh->prepare("SELECT * FROM old_issues,borrowers
1334 WHERE itemnumber = ?
1335 AND old_issues.borrowernumber = borrowers.borrowernumber
1336 ORDER BY returndate DESC
1337 LIMIT 3");
1338 $sth2->execute($data->{'itemnumber'});
1339 my $ii = 0;
1340 while (my $data2 = $sth2->fetchrow_hashref()) {
1341 $data->{"timestamp$ii"} = $data2->{'timestamp'} if $data2->{'timestamp'};
1342 $data->{"card$ii"} = $data2->{'cardnumber'} if $data2->{'cardnumber'};
1343 $data->{"borrower$ii"} = $data2->{'borrowernumber'} if $data2->{'borrowernumber'};
1344 $ii++;
1347 $results[$i] = $data;
1348 $i++;
1350 if($serial) {
1351 return( sort { ($b->{'publisheddate'} || $b->{'enumchron'}) cmp ($a->{'publisheddate'} || $a->{'enumchron'}) } @results );
1352 } else {
1353 return (@results);
1357 =head2 get_itemnumbers_of
1359 =over 4
1361 my @itemnumbers_of = get_itemnumbers_of(@biblionumbers);
1363 =back
1365 Given a list of biblionumbers, return the list of corresponding itemnumbers
1366 for each biblionumber.
1368 Return a reference on a hash where keys are biblionumbers and values are
1369 references on array of itemnumbers.
1371 =cut
1373 sub get_itemnumbers_of {
1374 my @biblionumbers = @_;
1376 my $dbh = C4::Context->dbh;
1378 my $query = '
1379 SELECT itemnumber,
1380 biblionumber
1381 FROM items
1382 WHERE biblionumber IN (?' . ( ',?' x scalar @biblionumbers - 1 ) . ')
1384 my $sth = $dbh->prepare($query);
1385 $sth->execute(@biblionumbers);
1387 my %itemnumbers_of;
1389 while ( my ( $itemnumber, $biblionumber ) = $sth->fetchrow_array ) {
1390 push @{ $itemnumbers_of{$biblionumber} }, $itemnumber;
1393 return \%itemnumbers_of;
1396 =head2 GetItemnumberFromBarcode
1398 =over 4
1400 $result = GetItemnumberFromBarcode($barcode);
1402 =back
1404 =cut
1406 sub GetItemnumberFromBarcode {
1407 my ($barcode) = @_;
1408 my $dbh = C4::Context->dbh;
1410 my $rq =
1411 $dbh->prepare("SELECT itemnumber FROM items WHERE items.barcode=?");
1412 $rq->execute($barcode);
1413 my ($result) = $rq->fetchrow;
1414 return ($result);
1417 =head3 get_item_authorised_values
1419 find the types and values for all authorised values assigned to this item.
1421 parameters:
1422 itemnumber
1424 returns: a hashref malling the authorised value to the value set for this itemnumber
1426 $authorised_values = {
1427 'CCODE' => undef,
1428 'DAMAGED' => '0',
1429 'LOC' => '3',
1430 'LOST' => '0'
1431 'NOT_LOAN' => '0',
1432 'RESTRICTED' => undef,
1433 'STACK' => undef,
1434 'WITHDRAWN' => '0',
1435 'branches' => 'CPL',
1436 'cn_source' => undef,
1437 'itemtypes' => 'SER',
1440 Notes: see C4::Biblio::get_biblio_authorised_values for a similar method at the biblio level.
1442 =cut
1444 sub get_item_authorised_values {
1445 my $itemnumber = shift;
1447 # assume that these entries in the authorised_value table are item level.
1448 my $query = q(SELECT distinct authorised_value, kohafield
1449 FROM marc_subfield_structure
1450 WHERE kohafield like 'item%'
1451 AND authorised_value != '' );
1453 my $itemlevel_authorised_values = C4::Context->dbh->selectall_hashref( $query, 'authorised_value' );
1454 my $iteminfo = GetItem( $itemnumber );
1455 # warn( Data::Dumper->Dump( [ $itemlevel_authorised_values ], [ 'itemlevel_authorised_values' ] ) );
1456 my $return;
1457 foreach my $this_authorised_value ( keys %$itemlevel_authorised_values ) {
1458 my $field = $itemlevel_authorised_values->{ $this_authorised_value }->{'kohafield'};
1459 $field =~ s/^items\.//;
1460 if ( exists $iteminfo->{ $field } ) {
1461 $return->{ $this_authorised_value } = $iteminfo->{ $field };
1464 # warn( Data::Dumper->Dump( [ $return ], [ 'return' ] ) );
1465 return $return;
1468 =head3 get_authorised_value_images
1470 find a list of icons that are appropriate for display based on the
1471 authorised values for a biblio.
1473 parameters: listref of authorised values, such as comes from
1474 get_item_ahtorised_values or
1475 from C4::Biblio::get_biblio_authorised_values
1477 returns: listref of hashrefs for each image. Each hashref looks like
1478 this:
1480 { imageurl => '/intranet-tmpl/prog/img/itemtypeimg/npl/WEB.gif',
1481 label => '',
1482 category => '',
1483 value => '', }
1485 Notes: Currently, I put on the full path to the images on the staff
1486 side. This should either be configurable or not done at all. Since I
1487 have to deal with 'intranet' or 'opac' in
1488 get_biblio_authorised_values, perhaps I should be passing it in.
1490 =cut
1492 sub get_authorised_value_images {
1493 my $authorised_values = shift;
1495 my @imagelist;
1497 my $authorised_value_list = GetAuthorisedValues();
1498 # warn ( Data::Dumper->Dump( [ $authorised_value_list ], [ 'authorised_value_list' ] ) );
1499 foreach my $this_authorised_value ( @$authorised_value_list ) {
1500 if ( exists $authorised_values->{ $this_authorised_value->{'category'} }
1501 && $authorised_values->{ $this_authorised_value->{'category'} } eq $this_authorised_value->{'authorised_value'} ) {
1502 # warn ( Data::Dumper->Dump( [ $this_authorised_value ], [ 'this_authorised_value' ] ) );
1503 if ( defined $this_authorised_value->{'imageurl'} ) {
1504 push @imagelist, { imageurl => C4::Koha::getitemtypeimagelocation( 'intranet', $this_authorised_value->{'imageurl'} ),
1505 label => $this_authorised_value->{'lib'},
1506 category => $this_authorised_value->{'category'},
1507 value => $this_authorised_value->{'authorised_value'}, };
1512 # warn ( Data::Dumper->Dump( [ \@imagelist ], [ 'imagelist' ] ) );
1513 return \@imagelist;
1517 =head1 LIMITED USE FUNCTIONS
1519 The following functions, while part of the public API,
1520 are not exported. This is generally because they are
1521 meant to be used by only one script for a specific
1522 purpose, and should not be used in any other context
1523 without careful thought.
1525 =cut
1527 =head2 GetMarcItem
1529 =over 4
1531 my $item_marc = GetMarcItem($biblionumber, $itemnumber);
1533 =back
1535 Returns MARC::Record of the item passed in parameter.
1536 This function is meant for use only in C<cataloguing/additem.pl>,
1537 where it is needed to support that script's MARC-like
1538 editor.
1540 =cut
1542 sub GetMarcItem {
1543 my ( $biblionumber, $itemnumber ) = @_;
1545 # GetMarcItem has been revised so that it does the following:
1546 # 1. Gets the item information from the items table.
1547 # 2. Converts it to a MARC field for storage in the bib record.
1549 # The previous behavior was:
1550 # 1. Get the bib record.
1551 # 2. Return the MARC tag corresponding to the item record.
1553 # The difference is that one treats the items row as authoritative,
1554 # while the other treats the MARC representation as authoritative
1555 # under certain circumstances.
1557 my $itemrecord = GetItem($itemnumber);
1559 # Tack on 'items.' prefix to column names so that TransformKohaToMarc will work.
1560 # Also, don't emit a subfield if the underlying field is blank.
1561 my $mungeditem = {
1562 map {
1563 defined($itemrecord->{$_}) && $itemrecord->{$_} ne '' ? ("items.$_" => $itemrecord->{$_}) : ()
1564 } keys %{ $itemrecord }
1566 my $itemmarc = TransformKohaToMarc($mungeditem);
1568 my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($mungeditem->{'items.more_subfields_xml'});
1569 if (defined $unlinked_item_subfields and $#$unlinked_item_subfields > -1) {
1570 my @fields = $itemmarc->fields();
1571 if ($#fields > -1) {
1572 $fields[0]->add_subfields(@$unlinked_item_subfields);
1576 return $itemmarc;
1580 =head1 PRIVATE FUNCTIONS AND VARIABLES
1582 The following functions are not meant to be called
1583 directly, but are documented in order to explain
1584 the inner workings of C<C4::Items>.
1586 =cut
1588 =head2 %derived_columns
1590 This hash keeps track of item columns that
1591 are strictly derived from other columns in
1592 the item record and are not meant to be set
1593 independently.
1595 Each key in the hash should be the name of a
1596 column (as named by TransformMarcToKoha). Each
1597 value should be hashref whose keys are the
1598 columns on which the derived column depends. The
1599 hashref should also contain a 'BUILDER' key
1600 that is a reference to a sub that calculates
1601 the derived value.
1603 =cut
1605 my %derived_columns = (
1606 'items.cn_sort' => {
1607 'itemcallnumber' => 1,
1608 'items.cn_source' => 1,
1609 'BUILDER' => \&_calc_items_cn_sort,
1613 =head2 _set_derived_columns_for_add
1615 =over 4
1617 _set_derived_column_for_add($item);
1619 =back
1621 Given an item hash representing a new item to be added,
1622 calculate any derived columns. Currently the only
1623 such column is C<items.cn_sort>.
1625 =cut
1627 sub _set_derived_columns_for_add {
1628 my $item = shift;
1630 foreach my $column (keys %derived_columns) {
1631 my $builder = $derived_columns{$column}->{'BUILDER'};
1632 my $source_values = {};
1633 foreach my $source_column (keys %{ $derived_columns{$column} }) {
1634 next if $source_column eq 'BUILDER';
1635 $source_values->{$source_column} = $item->{$source_column};
1637 $builder->($item, $source_values);
1641 =head2 _set_derived_columns_for_mod
1643 =over 4
1645 _set_derived_column_for_mod($item);
1647 =back
1649 Given an item hash representing a new item to be modified.
1650 calculate any derived columns. Currently the only
1651 such column is C<items.cn_sort>.
1653 This routine differs from C<_set_derived_columns_for_add>
1654 in that it needs to handle partial item records. In other
1655 words, the caller of C<ModItem> may have supplied only one
1656 or two columns to be changed, so this function needs to
1657 determine whether any of the columns to be changed affect
1658 any of the derived columns. Also, if a derived column
1659 depends on more than one column, but the caller is not
1660 changing all of then, this routine retrieves the unchanged
1661 values from the database in order to ensure a correct
1662 calculation.
1664 =cut
1666 sub _set_derived_columns_for_mod {
1667 my $item = shift;
1669 foreach my $column (keys %derived_columns) {
1670 my $builder = $derived_columns{$column}->{'BUILDER'};
1671 my $source_values = {};
1672 my %missing_sources = ();
1673 my $must_recalc = 0;
1674 foreach my $source_column (keys %{ $derived_columns{$column} }) {
1675 next if $source_column eq 'BUILDER';
1676 if (exists $item->{$source_column}) {
1677 $must_recalc = 1;
1678 $source_values->{$source_column} = $item->{$source_column};
1679 } else {
1680 $missing_sources{$source_column} = 1;
1683 if ($must_recalc) {
1684 foreach my $source_column (keys %missing_sources) {
1685 $source_values->{$source_column} = _get_single_item_column($source_column, $item->{'itemnumber'});
1687 $builder->($item, $source_values);
1692 =head2 _do_column_fixes_for_mod
1694 =over 4
1696 _do_column_fixes_for_mod($item);
1698 =back
1700 Given an item hashref containing one or more
1701 columns to modify, fix up certain values.
1702 Specifically, set to 0 any passed value
1703 of C<notforloan>, C<damaged>, C<itemlost>, or
1704 C<wthdrawn> that is either undefined or
1705 contains the empty string.
1707 =cut
1709 sub _do_column_fixes_for_mod {
1710 my $item = shift;
1712 if (exists $item->{'notforloan'} and
1713 (not defined $item->{'notforloan'} or $item->{'notforloan'} eq '')) {
1714 $item->{'notforloan'} = 0;
1716 if (exists $item->{'damaged'} and
1717 (not defined $item->{'damaged'} or $item->{'damaged'} eq '')) {
1718 $item->{'damaged'} = 0;
1720 if (exists $item->{'itemlost'} and
1721 (not defined $item->{'itemlost'} or $item->{'itemlost'} eq '')) {
1722 $item->{'itemlost'} = 0;
1724 if (exists $item->{'wthdrawn'} and
1725 (not defined $item->{'wthdrawn'} or $item->{'wthdrawn'} eq '')) {
1726 $item->{'wthdrawn'} = 0;
1730 =head2 _get_single_item_column
1732 =over 4
1734 _get_single_item_column($column, $itemnumber);
1736 =back
1738 Retrieves the value of a single column from an C<items>
1739 row specified by C<$itemnumber>.
1741 =cut
1743 sub _get_single_item_column {
1744 my $column = shift;
1745 my $itemnumber = shift;
1747 my $dbh = C4::Context->dbh;
1748 my $sth = $dbh->prepare("SELECT $column FROM items WHERE itemnumber = ?");
1749 $sth->execute($itemnumber);
1750 my ($value) = $sth->fetchrow();
1751 return $value;
1754 =head2 _calc_items_cn_sort
1756 =over 4
1758 _calc_items_cn_sort($item, $source_values);
1760 =back
1762 Helper routine to calculate C<items.cn_sort>.
1764 =cut
1766 sub _calc_items_cn_sort {
1767 my $item = shift;
1768 my $source_values = shift;
1770 $item->{'items.cn_sort'} = GetClassSort($source_values->{'items.cn_source'}, $source_values->{'itemcallnumber'}, "");
1773 =head2 _set_defaults_for_add
1775 =over 4
1777 _set_defaults_for_add($item_hash);
1779 =back
1781 Given an item hash representing an item to be added, set
1782 correct default values for columns whose default value
1783 is not handled by the DBMS. This includes the following
1784 columns:
1786 =over 2
1788 =item *
1790 C<items.dateaccessioned>
1792 =item *
1794 C<items.notforloan>
1796 =item *
1798 C<items.damaged>
1800 =item *
1802 C<items.itemlost>
1804 =item *
1806 C<items.wthdrawn>
1808 =back
1810 =cut
1812 sub _set_defaults_for_add {
1813 my $item = shift;
1815 # if dateaccessioned is provided, use it. Otherwise, set to NOW()
1816 if (!(exists $item->{'dateaccessioned'}) ||
1817 ($item->{'dateaccessioned'} eq '')) {
1818 # FIXME add check for invalid date
1819 my $today = C4::Dates->new();
1820 $item->{'dateaccessioned'} = $today->output("iso"); #TODO: check time issues
1823 # various item status fields cannot be null
1824 $item->{'notforloan'} = 0 unless exists $item->{'notforloan'} and defined $item->{'notforloan'} and $item->{'notforloan'} ne '';
1825 $item->{'damaged'} = 0 unless exists $item->{'damaged'} and defined $item->{'damaged'} and $item->{'damaged'} ne '';
1826 $item->{'itemlost'} = 0 unless exists $item->{'itemlost'} and defined $item->{'itemlost'} and $item->{'itemlost'} ne '';
1827 $item->{'wthdrawn'} = 0 unless exists $item->{'wthdrawn'} and defined $item->{'wthdrawn'} and $item->{'wthdrawn'} ne '';
1830 =head2 _koha_new_item
1832 =over 4
1834 my ($itemnumber,$error) = _koha_new_item( $item, $barcode );
1836 =back
1838 Perform the actual insert into the C<items> table.
1840 =cut
1842 sub _koha_new_item {
1843 my ( $item, $barcode ) = @_;
1844 my $dbh=C4::Context->dbh;
1845 my $error;
1846 my $query =
1847 "INSERT INTO items SET
1848 biblionumber = ?,
1849 biblioitemnumber = ?,
1850 barcode = ?,
1851 dateaccessioned = ?,
1852 booksellerid = ?,
1853 homebranch = ?,
1854 price = ?,
1855 replacementprice = ?,
1856 replacementpricedate = NOW(),
1857 datelastborrowed = ?,
1858 datelastseen = NOW(),
1859 stack = ?,
1860 notforloan = ?,
1861 damaged = ?,
1862 itemlost = ?,
1863 wthdrawn = ?,
1864 itemcallnumber = ?,
1865 restricted = ?,
1866 itemnotes = ?,
1867 holdingbranch = ?,
1868 paidfor = ?,
1869 location = ?,
1870 onloan = ?,
1871 issues = ?,
1872 renewals = ?,
1873 reserves = ?,
1874 cn_source = ?,
1875 cn_sort = ?,
1876 ccode = ?,
1877 itype = ?,
1878 materials = ?,
1879 uri = ?,
1880 enumchron = ?,
1881 more_subfields_xml = ?,
1882 copynumber = ?
1884 my $sth = $dbh->prepare($query);
1885 $sth->execute(
1886 $item->{'biblionumber'},
1887 $item->{'biblioitemnumber'},
1888 $barcode,
1889 $item->{'dateaccessioned'},
1890 $item->{'booksellerid'},
1891 $item->{'homebranch'},
1892 $item->{'price'},
1893 $item->{'replacementprice'},
1894 $item->{datelastborrowed},
1895 $item->{stack},
1896 $item->{'notforloan'},
1897 $item->{'damaged'},
1898 $item->{'itemlost'},
1899 $item->{'wthdrawn'},
1900 $item->{'itemcallnumber'},
1901 $item->{'restricted'},
1902 $item->{'itemnotes'},
1903 $item->{'holdingbranch'},
1904 $item->{'paidfor'},
1905 $item->{'location'},
1906 $item->{'onloan'},
1907 $item->{'issues'},
1908 $item->{'renewals'},
1909 $item->{'reserves'},
1910 $item->{'items.cn_source'},
1911 $item->{'items.cn_sort'},
1912 $item->{'ccode'},
1913 $item->{'itype'},
1914 $item->{'materials'},
1915 $item->{'uri'},
1916 $item->{'enumchron'},
1917 $item->{'more_subfields_xml'},
1918 $item->{'copynumber'},
1920 my $itemnumber = $dbh->{'mysql_insertid'};
1921 if ( defined $sth->errstr ) {
1922 $error.="ERROR in _koha_new_item $query".$sth->errstr;
1924 $sth->finish();
1925 return ( $itemnumber, $error );
1928 =head2 _koha_modify_item
1930 =over 4
1932 my ($itemnumber,$error) =_koha_modify_item( $item );
1934 =back
1936 Perform the actual update of the C<items> row. Note that this
1937 routine accepts a hashref specifying the columns to update.
1939 =cut
1941 sub _koha_modify_item {
1942 my ( $item ) = @_;
1943 my $dbh=C4::Context->dbh;
1944 my $error;
1946 my $query = "UPDATE items SET ";
1947 my @bind;
1948 for my $key ( keys %$item ) {
1949 $query.="$key=?,";
1950 push @bind, $item->{$key};
1952 $query =~ s/,$//;
1953 $query .= " WHERE itemnumber=?";
1954 push @bind, $item->{'itemnumber'};
1955 my $sth = C4::Context->dbh->prepare($query);
1956 $sth->execute(@bind);
1957 if ( C4::Context->dbh->errstr ) {
1958 $error.="ERROR in _koha_modify_item $query".$dbh->errstr;
1959 warn $error;
1961 $sth->finish();
1962 return ($item->{'itemnumber'},$error);
1965 =head2 _koha_delete_item
1967 =over 4
1969 _koha_delete_item( $dbh, $itemnum );
1971 =back
1973 Internal function to delete an item record from the koha tables
1975 =cut
1977 sub _koha_delete_item {
1978 my ( $dbh, $itemnum ) = @_;
1980 # save the deleted item to deleteditems table
1981 my $sth = $dbh->prepare("SELECT * FROM items WHERE itemnumber=?");
1982 $sth->execute($itemnum);
1983 my $data = $sth->fetchrow_hashref();
1984 $sth->finish();
1985 my $query = "INSERT INTO deleteditems SET ";
1986 my @bind = ();
1987 foreach my $key ( keys %$data ) {
1988 $query .= "$key = ?,";
1989 push( @bind, $data->{$key} );
1991 $query =~ s/\,$//;
1992 $sth = $dbh->prepare($query);
1993 $sth->execute(@bind);
1994 $sth->finish();
1996 # delete from items table
1997 $sth = $dbh->prepare("DELETE FROM items WHERE itemnumber=?");
1998 $sth->execute($itemnum);
1999 $sth->finish();
2000 return undef;
2003 =head2 _marc_from_item_hash
2005 =over 4
2007 my $item_marc = _marc_from_item_hash($item, $frameworkcode[, $unlinked_item_subfields]);
2009 =back
2011 Given an item hash representing a complete item record,
2012 create a C<MARC::Record> object containing an embedded
2013 tag representing that item.
2015 The third, optional parameter C<$unlinked_item_subfields> is
2016 an arrayref of subfields (not mapped to C<items> fields per the
2017 framework) to be added to the MARC representation
2018 of the item.
2020 =cut
2022 sub _marc_from_item_hash {
2023 my $item = shift;
2024 my $frameworkcode = shift;
2025 my $unlinked_item_subfields;
2026 if (@_) {
2027 $unlinked_item_subfields = shift;
2030 # Tack on 'items.' prefix to column names so lookup from MARC frameworks will work
2031 # Also, don't emit a subfield if the underlying field is blank.
2032 my $mungeditem = { map { (defined($item->{$_}) and $item->{$_} ne '') ?
2033 (/^items\./ ? ($_ => $item->{$_}) : ("items.$_" => $item->{$_}))
2034 : () } keys %{ $item } };
2036 my $item_marc = MARC::Record->new();
2037 foreach my $item_field (keys %{ $mungeditem }) {
2038 my ($tag, $subfield) = GetMarcFromKohaField($item_field, $frameworkcode);
2039 next unless defined $tag and defined $subfield; # skip if not mapped to MARC field
2040 if (my $field = $item_marc->field($tag)) {
2041 $field->add_subfields($subfield => $mungeditem->{$item_field});
2042 } else {
2043 my $add_subfields = [];
2044 if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
2045 $add_subfields = $unlinked_item_subfields;
2047 $item_marc->add_fields( $tag, " ", " ", $subfield => $mungeditem->{$item_field}, @$add_subfields);
2051 return $item_marc;
2054 =head2 _add_item_field_to_biblio
2056 =over 4
2058 _add_item_field_to_biblio($item_marc, $biblionumber, $frameworkcode);
2060 =back
2062 Adds the fields from a MARC record containing the
2063 representation of a Koha item record to the MARC
2064 biblio record. The input C<$item_marc> record
2065 is expect to contain just one field, the embedded
2066 item information field.
2068 =cut
2070 sub _add_item_field_to_biblio {
2071 my ($item_marc, $biblionumber, $frameworkcode) = @_;
2073 my $biblio_marc = GetMarcBiblio($biblionumber);
2074 foreach my $field ($item_marc->fields()) {
2075 $biblio_marc->append_fields($field);
2078 ModBiblioMarc($biblio_marc, $biblionumber, $frameworkcode);
2081 =head2 _replace_item_field_in_biblio
2083 =over
2085 &_replace_item_field_in_biblio($item_marc, $biblionumber, $itemnumber, $frameworkcode)
2087 =back
2089 Given a MARC::Record C<$item_marc> containing one tag with the MARC
2090 representation of the item, examine the biblio MARC
2091 for the corresponding tag for that item and
2092 replace it with the tag from C<$item_marc>.
2094 =cut
2096 sub _replace_item_field_in_biblio {
2097 my ($ItemRecord, $biblionumber, $itemnumber, $frameworkcode) = @_;
2098 my $dbh = C4::Context->dbh;
2100 # get complete MARC record & replace the item field by the new one
2101 my $completeRecord = GetMarcBiblio($biblionumber);
2102 my ($itemtag,$itemsubfield) = GetMarcFromKohaField("items.itemnumber",$frameworkcode);
2103 my $itemField = $ItemRecord->field($itemtag);
2104 my @items = $completeRecord->field($itemtag);
2105 my $found = 0;
2106 foreach (@items) {
2107 if ($_->subfield($itemsubfield) eq $itemnumber) {
2108 $_->replace_with($itemField);
2109 $found = 1;
2113 unless ($found) {
2114 # If we haven't found the matching field,
2115 # just add it. However, this means that
2116 # there is likely a bug.
2117 $completeRecord->append_fields($itemField);
2120 # save the record
2121 ModBiblioMarc($completeRecord, $biblionumber, $frameworkcode);
2124 =head2 _repack_item_errors
2126 Add an error message hash generated by C<CheckItemPreSave>
2127 to a list of errors.
2129 =cut
2131 sub _repack_item_errors {
2132 my $item_sequence_num = shift;
2133 my $item_ref = shift;
2134 my $error_ref = shift;
2136 my @repacked_errors = ();
2138 foreach my $error_code (sort keys %{ $error_ref }) {
2139 my $repacked_error = {};
2140 $repacked_error->{'item_sequence'} = $item_sequence_num;
2141 $repacked_error->{'item_barcode'} = exists($item_ref->{'barcode'}) ? $item_ref->{'barcode'} : '';
2142 $repacked_error->{'error_code'} = $error_code;
2143 $repacked_error->{'error_information'} = $error_ref->{$error_code};
2144 push @repacked_errors, $repacked_error;
2147 return @repacked_errors;
2150 =head2 _get_unlinked_item_subfields
2152 =over 4
2154 my $unlinked_item_subfields = _get_unlinked_item_subfields($original_item_marc, $frameworkcode);
2156 =back
2158 =cut
2160 sub _get_unlinked_item_subfields {
2161 my $original_item_marc = shift;
2162 my $frameworkcode = shift;
2164 my $marcstructure = GetMarcStructure(1, $frameworkcode);
2166 # assume that this record has only one field, and that that
2167 # field contains only the item information
2168 my $subfields = [];
2169 my @fields = $original_item_marc->fields();
2170 if ($#fields > -1) {
2171 my $field = $fields[0];
2172 my $tag = $field->tag();
2173 foreach my $subfield ($field->subfields()) {
2174 if (defined $subfield->[1] and
2175 $subfield->[1] ne '' and
2176 !$marcstructure->{$tag}->{$subfield->[0]}->{'kohafield'}) {
2177 push @$subfields, $subfield->[0] => $subfield->[1];
2181 return $subfields;
2184 =head2 _get_unlinked_subfields_xml
2186 =over 4
2188 my $unlinked_subfields_xml = _get_unlinked_subfields_xml($unlinked_item_subfields);
2190 =back
2192 =cut
2194 sub _get_unlinked_subfields_xml {
2195 my $unlinked_item_subfields = shift;
2197 my $xml;
2198 if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
2199 my $marc = MARC::Record->new();
2200 # use of tag 999 is arbitrary, and doesn't need to match the item tag
2201 # used in the framework
2202 $marc->append_fields(MARC::Field->new('999', ' ', ' ', @$unlinked_item_subfields));
2203 $marc->encoding("UTF-8");
2204 $xml = $marc->as_xml("USMARC");
2207 return $xml;
2210 =head2 _parse_unlinked_item_subfields_from_xml
2212 =over 4
2214 my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($whole_item->{'more_subfields_xml'}):
2216 =back
2218 =cut
2220 sub _parse_unlinked_item_subfields_from_xml {
2221 my $xml = shift;
2223 return unless defined $xml and $xml ne "";
2224 my $marc = MARC::Record->new_from_xml(StripNonXmlChars($xml),'UTF-8');
2225 my $unlinked_subfields = [];
2226 my @fields = $marc->fields();
2227 if ($#fields > -1) {
2228 foreach my $subfield ($fields[0]->subfields()) {
2229 push @$unlinked_subfields, $subfield->[0] => $subfield->[1];
2232 return $unlinked_subfields;