more XHTML corrections for new circ reports
[koha.git] / C4 / Items.pm
blobeccc5aef697dc31d3f40f2475ac4b9b6ecdcf6ca
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 my ( $itemnumber, $error ) = _koha_new_item( $item, $item->{barcode} );
228 $item->{'itemnumber'} = $itemnumber;
230 # create MARC tag representing item and add to bib
231 my $new_item_marc = _marc_from_item_hash($item, $frameworkcode, $unlinked_item_subfields);
232 _add_item_field_to_biblio($new_item_marc, $item->{'biblionumber'}, $frameworkcode );
234 logaction("CATALOGUING", "ADD", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
236 return ($item->{biblionumber}, $item->{biblioitemnumber}, $itemnumber);
239 =head2 AddItemBatchFromMarc
241 =over 4
243 ($itemnumber_ref, $error_ref) = AddItemBatchFromMarc($record, $biblionumber, $biblioitemnumber, $frameworkcode);
245 =back
247 Efficiently create item records from a MARC biblio record with
248 embedded item fields. This routine is suitable for batch jobs.
250 This API assumes that the bib record has already been
251 saved to the C<biblio> and C<biblioitems> tables. It does
252 not expect that C<biblioitems.marc> and C<biblioitems.marcxml>
253 are populated, but it will do so via a call to ModBibiloMarc.
255 The goal of this API is to have a similar effect to using AddBiblio
256 and AddItems in succession, but without inefficient repeated
257 parsing of the MARC XML bib record.
259 This function returns an arrayref of new itemsnumbers and an arrayref of item
260 errors encountered during the processing. Each entry in the errors
261 list is a hashref containing the following keys:
263 =over 2
265 =item item_sequence
267 Sequence number of original item tag in the MARC record.
269 =item item_barcode
271 Item barcode, provide to assist in the construction of
272 useful error messages.
274 =item error_condition
276 Code representing the error condition. Can be 'duplicate_barcode',
277 'invalid_homebranch', or 'invalid_holdingbranch'.
279 =item error_information
281 Additional information appropriate to the error condition.
283 =back
285 =cut
287 sub AddItemBatchFromMarc {
288 my ($record, $biblionumber, $biblioitemnumber, $frameworkcode) = @_;
289 my $error;
290 my @itemnumbers = ();
291 my @errors = ();
292 my $dbh = C4::Context->dbh;
294 # loop through the item tags and start creating items
295 my @bad_item_fields = ();
296 my ($itemtag, $itemsubfield) = &GetMarcFromKohaField("items.itemnumber",'');
297 my $item_sequence_num = 0;
298 ITEMFIELD: foreach my $item_field ($record->field($itemtag)) {
299 $item_sequence_num++;
300 # we take the item field and stick it into a new
301 # MARC record -- this is required so far because (FIXME)
302 # TransformMarcToKoha requires a MARC::Record, not a MARC::Field
303 # and there is no TransformMarcFieldToKoha
304 my $temp_item_marc = MARC::Record->new();
305 $temp_item_marc->append_fields($item_field);
307 # add biblionumber and biblioitemnumber
308 my $item = TransformMarcToKoha( $dbh, $temp_item_marc, $frameworkcode, 'items' );
309 my $unlinked_item_subfields = _get_unlinked_item_subfields($temp_item_marc, $frameworkcode);
310 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
311 $item->{'biblionumber'} = $biblionumber;
312 $item->{'biblioitemnumber'} = $biblioitemnumber;
314 # check for duplicate barcode
315 my %item_errors = CheckItemPreSave($item);
316 if (%item_errors) {
317 push @errors, _repack_item_errors($item_sequence_num, $item, \%item_errors);
318 push @bad_item_fields, $item_field;
319 next ITEMFIELD;
322 _set_defaults_for_add($item);
323 _set_derived_columns_for_add($item);
324 my ( $itemnumber, $error ) = _koha_new_item( $item, $item->{barcode} );
325 warn $error if $error;
326 push @itemnumbers, $itemnumber; # FIXME not checking error
327 $item->{'itemnumber'} = $itemnumber;
329 logaction("CATALOGUING", "ADD", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
331 my $new_item_marc = _marc_from_item_hash($item, $frameworkcode, $unlinked_item_subfields);
332 $item_field->replace_with($new_item_marc->field($itemtag));
335 # remove any MARC item fields for rejected items
336 foreach my $item_field (@bad_item_fields) {
337 $record->delete_field($item_field);
340 # update the MARC biblio
341 $biblionumber = ModBiblioMarc( $record, $biblionumber, $frameworkcode );
343 return (\@itemnumbers, \@errors);
346 =head2 ModItemFromMarc
348 =over 4
350 ModItemFromMarc($item_marc, $biblionumber, $itemnumber);
352 =back
354 This function updates an item record based on a supplied
355 C<MARC::Record> object containing an embedded item field.
356 This API is meant for the use of C<additem.pl>; for
357 other purposes, C<ModItem> should be used.
359 =cut
361 sub ModItemFromMarc {
362 my $item_marc = shift;
363 my $biblionumber = shift;
364 my $itemnumber = shift;
366 my $dbh = C4::Context->dbh;
367 my $frameworkcode = GetFrameworkCode( $biblionumber );
368 my $item = &TransformMarcToKoha( $dbh, $item_marc, $frameworkcode );
369 my $unlinked_item_subfields = _get_unlinked_item_subfields($item_marc, $frameworkcode);
371 return ModItem($item, $biblionumber, $itemnumber, $dbh, $frameworkcode, $unlinked_item_subfields);
374 =head2 ModItem
376 =over 4
378 ModItem({ column => $newvalue }, $biblionumber, $itemnumber[, $original_item_marc]);
380 =back
382 Change one or more columns in an item record and update
383 the MARC representation of the item.
385 The first argument is a hashref mapping from item column
386 names to the new values. The second and third arguments
387 are the biblionumber and itemnumber, respectively.
389 The fourth, optional parameter, C<$unlinked_item_subfields>, contains
390 an arrayref containing subfields present in the original MARC
391 representation of the item (e.g., from the item editor) that are
392 not mapped to C<items> columns directly but should instead
393 be stored in C<items.more_subfields_xml> and included in
394 the biblio items tag for display and indexing.
396 If one of the changed columns is used to calculate
397 the derived value of a column such as C<items.cn_sort>,
398 this routine will perform the necessary calculation
399 and set the value.
401 =cut
403 sub ModItem {
404 my $item = shift;
405 my $biblionumber = shift;
406 my $itemnumber = shift;
408 # if $biblionumber is undefined, get it from the current item
409 unless (defined $biblionumber) {
410 $biblionumber = _get_single_item_column('biblionumber', $itemnumber);
413 my $dbh = @_ ? shift : C4::Context->dbh;
414 my $frameworkcode = @_ ? shift : GetFrameworkCode( $biblionumber );
416 my $unlinked_item_subfields;
417 if (@_) {
418 $unlinked_item_subfields = shift;
419 $item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
422 $item->{'itemnumber'} = $itemnumber or return undef;
423 _set_derived_columns_for_mod($item);
424 _do_column_fixes_for_mod($item);
425 # FIXME add checks
426 # duplicate barcode
427 # attempt to change itemnumber
428 # attempt to change biblionumber (if we want
429 # an API to relink an item to a different bib,
430 # it should be a separate function)
432 # update items table
433 _koha_modify_item($item);
435 # update biblio MARC XML
436 my $whole_item = GetItem($itemnumber) or die "FAILED GetItem($itemnumber)";
438 unless (defined $unlinked_item_subfields) {
439 $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($whole_item->{'more_subfields_xml'});
441 my $new_item_marc = _marc_from_item_hash($whole_item, $frameworkcode, $unlinked_item_subfields)
442 or die "FAILED _marc_from_item_hash($whole_item, $frameworkcode)";
444 _replace_item_field_in_biblio($new_item_marc, $biblionumber, $itemnumber, $frameworkcode);
445 ($new_item_marc eq '0') and die "$new_item_marc is '0', not hashref"; # logaction line would crash anyway
446 logaction("CATALOGUING", "MODIFY", $itemnumber, $new_item_marc->as_formatted) if C4::Context->preference("CataloguingLog");
449 =head2 ModItemTransfer
451 =over 4
453 ModItemTransfer($itenumber, $frombranch, $tobranch);
455 =back
457 Marks an item as being transferred from one branch
458 to another.
460 =cut
462 sub ModItemTransfer {
463 my ( $itemnumber, $frombranch, $tobranch ) = @_;
465 my $dbh = C4::Context->dbh;
467 #new entry in branchtransfers....
468 my $sth = $dbh->prepare(
469 "INSERT INTO branchtransfers (itemnumber, frombranch, datesent, tobranch)
470 VALUES (?, ?, NOW(), ?)");
471 $sth->execute($itemnumber, $frombranch, $tobranch);
473 ModItem({ holdingbranch => $tobranch }, undef, $itemnumber);
474 ModDateLastSeen($itemnumber);
475 return;
478 =head2 ModDateLastSeen
480 =over 4
482 ModDateLastSeen($itemnum);
484 =back
486 Mark item as seen. Is called when an item is issued, returned or manually marked during inventory/stocktaking.
487 C<$itemnum> is the item number
489 =cut
491 sub ModDateLastSeen {
492 my ($itemnumber) = @_;
494 my $today = C4::Dates->new();
495 ModItem({ itemlost => 0, datelastseen => $today->output("iso") }, undef, $itemnumber);
498 =head2 DelItem
500 =over 4
502 DelItem($biblionumber, $itemnumber);
504 =back
506 Exported function (core API) for deleting an item record in Koha.
508 =cut
510 sub DelItem {
511 my ( $dbh, $biblionumber, $itemnumber ) = @_;
513 # FIXME check the item has no current issues
515 _koha_delete_item( $dbh, $itemnumber );
517 # get the MARC record
518 my $record = GetMarcBiblio($biblionumber);
519 my $frameworkcode = GetFrameworkCode($biblionumber);
521 # backup the record
522 my $copy2deleted = $dbh->prepare("UPDATE deleteditems SET marc=? WHERE itemnumber=?");
523 $copy2deleted->execute( $record->as_usmarc(), $itemnumber );
525 #search item field code
526 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField("items.itemnumber",$frameworkcode);
527 my @fields = $record->field($itemtag);
529 # delete the item specified
530 foreach my $field (@fields) {
531 if ( $field->subfield($itemsubfield) eq $itemnumber ) {
532 $record->delete_field($field);
535 &ModBiblioMarc( $record, $biblionumber, $frameworkcode );
536 logaction("CATALOGUING", "DELETE", $itemnumber, "item") if C4::Context->preference("CataloguingLog");
539 =head2 CheckItemPreSave
541 =over 4
543 my $item_ref = TransformMarcToKoha($marc, 'items');
544 # do stuff
545 my %errors = CheckItemPreSave($item_ref);
546 if (exists $errors{'duplicate_barcode'}) {
547 print "item has duplicate barcode: ", $errors{'duplicate_barcode'}, "\n";
548 } elsif (exists $errors{'invalid_homebranch'}) {
549 print "item has invalid home branch: ", $errors{'invalid_homebranch'}, "\n";
550 } elsif (exists $errors{'invalid_holdingbranch'}) {
551 print "item has invalid holding branch: ", $errors{'invalid_holdingbranch'}, "\n";
552 } else {
553 print "item is OK";
556 =back
558 Given a hashref containing item fields, determine if it can be
559 inserted or updated in the database. Specifically, checks for
560 database integrity issues, and returns a hash containing any
561 of the following keys, if applicable.
563 =over 2
565 =item duplicate_barcode
567 Barcode, if it duplicates one already found in the database.
569 =item invalid_homebranch
571 Home branch, if not defined in branches table.
573 =item invalid_holdingbranch
575 Holding branch, if not defined in branches table.
577 =back
579 This function does NOT implement any policy-related checks,
580 e.g., whether current operator is allowed to save an
581 item that has a given branch code.
583 =cut
585 sub CheckItemPreSave {
586 my $item_ref = shift;
588 my %errors = ();
590 # check for duplicate barcode
591 if (exists $item_ref->{'barcode'} and defined $item_ref->{'barcode'}) {
592 my $existing_itemnumber = GetItemnumberFromBarcode($item_ref->{'barcode'});
593 if ($existing_itemnumber) {
594 if (!exists $item_ref->{'itemnumber'} # new item
595 or $item_ref->{'itemnumber'} != $existing_itemnumber) { # existing item
596 $errors{'duplicate_barcode'} = $item_ref->{'barcode'};
601 # check for valid home branch
602 if (exists $item_ref->{'homebranch'} and defined $item_ref->{'homebranch'}) {
603 my $branch_name = GetBranchName($item_ref->{'homebranch'});
604 unless (defined $branch_name) {
605 # relies on fact that branches.branchname is a non-NULL column,
606 # so GetBranchName returns undef only if branch does not exist
607 $errors{'invalid_homebranch'} = $item_ref->{'homebranch'};
611 # check for valid holding branch
612 if (exists $item_ref->{'holdingbranch'} and defined $item_ref->{'holdingbranch'}) {
613 my $branch_name = GetBranchName($item_ref->{'holdingbranch'});
614 unless (defined $branch_name) {
615 # relies on fact that branches.branchname is a non-NULL column,
616 # so GetBranchName returns undef only if branch does not exist
617 $errors{'invalid_holdingbranch'} = $item_ref->{'holdingbranch'};
621 return %errors;
625 =head1 EXPORTED SPECIAL ACCESSOR FUNCTIONS
627 The following functions provide various ways of
628 getting an item record, a set of item records, or
629 lists of authorized values for certain item fields.
631 Some of the functions in this group are candidates
632 for refactoring -- for example, some of the code
633 in C<GetItemsByBiblioitemnumber> and C<GetItemsInfo>
634 has copy-and-paste work.
636 =cut
638 =head2 GetItemStatus
640 =over 4
642 $itemstatushash = GetItemStatus($fwkcode);
644 =back
646 Returns a list of valid values for the
647 C<items.notforloan> field.
649 NOTE: does B<not> return an individual item's
650 status.
652 Can be MARC dependant.
653 fwkcode is optional.
654 But basically could be can be loan or not
655 Create a status selector with the following code
657 =head3 in PERL SCRIPT
659 =over 4
661 my $itemstatushash = getitemstatus;
662 my @itemstatusloop;
663 foreach my $thisstatus (keys %$itemstatushash) {
664 my %row =(value => $thisstatus,
665 statusname => $itemstatushash->{$thisstatus}->{'statusname'},
667 push @itemstatusloop, \%row;
669 $template->param(statusloop=>\@itemstatusloop);
671 =back
673 =head3 in TEMPLATE
675 =over 4
677 <select name="statusloop">
678 <option value="">Default</option>
679 <!-- TMPL_LOOP name="statusloop" -->
680 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="statusname" --></option>
681 <!-- /TMPL_LOOP -->
682 </select>
684 =back
686 =cut
688 sub GetItemStatus {
690 # returns a reference to a hash of references to status...
691 my ($fwk) = @_;
692 my %itemstatus;
693 my $dbh = C4::Context->dbh;
694 my $sth;
695 $fwk = '' unless ($fwk);
696 my ( $tag, $subfield ) =
697 GetMarcFromKohaField( "items.notforloan", $fwk );
698 if ( $tag and $subfield ) {
699 my $sth =
700 $dbh->prepare(
701 "SELECT authorised_value
702 FROM marc_subfield_structure
703 WHERE tagfield=?
704 AND tagsubfield=?
705 AND frameworkcode=?
708 $sth->execute( $tag, $subfield, $fwk );
709 if ( my ($authorisedvaluecat) = $sth->fetchrow ) {
710 my $authvalsth =
711 $dbh->prepare(
712 "SELECT authorised_value,lib
713 FROM authorised_values
714 WHERE category=?
715 ORDER BY lib
718 $authvalsth->execute($authorisedvaluecat);
719 while ( my ( $authorisedvalue, $lib ) = $authvalsth->fetchrow ) {
720 $itemstatus{$authorisedvalue} = $lib;
722 $authvalsth->finish;
723 return \%itemstatus;
724 exit 1;
726 else {
728 #No authvalue list
729 # build default
731 $sth->finish;
734 #No authvalue list
735 #build default
736 $itemstatus{"1"} = "Not For Loan";
737 return \%itemstatus;
740 =head2 GetItemLocation
742 =over 4
744 $itemlochash = GetItemLocation($fwk);
746 =back
748 Returns a list of valid values for the
749 C<items.location> field.
751 NOTE: does B<not> return an individual item's
752 location.
754 where fwk stands for an optional framework code.
755 Create a location selector with the following code
757 =head3 in PERL SCRIPT
759 =over 4
761 my $itemlochash = getitemlocation;
762 my @itemlocloop;
763 foreach my $thisloc (keys %$itemlochash) {
764 my $selected = 1 if $thisbranch eq $branch;
765 my %row =(locval => $thisloc,
766 selected => $selected,
767 locname => $itemlochash->{$thisloc},
769 push @itemlocloop, \%row;
771 $template->param(itemlocationloop => \@itemlocloop);
773 =back
775 =head3 in TEMPLATE
777 =over 4
779 <select name="location">
780 <option value="">Default</option>
781 <!-- TMPL_LOOP name="itemlocationloop" -->
782 <option value="<!-- TMPL_VAR name="locval" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="locname" --></option>
783 <!-- /TMPL_LOOP -->
784 </select>
786 =back
788 =cut
790 sub GetItemLocation {
792 # returns a reference to a hash of references to location...
793 my ($fwk) = @_;
794 my %itemlocation;
795 my $dbh = C4::Context->dbh;
796 my $sth;
797 $fwk = '' unless ($fwk);
798 my ( $tag, $subfield ) =
799 GetMarcFromKohaField( "items.location", $fwk );
800 if ( $tag and $subfield ) {
801 my $sth =
802 $dbh->prepare(
803 "SELECT authorised_value
804 FROM marc_subfield_structure
805 WHERE tagfield=?
806 AND tagsubfield=?
807 AND frameworkcode=?"
809 $sth->execute( $tag, $subfield, $fwk );
810 if ( my ($authorisedvaluecat) = $sth->fetchrow ) {
811 my $authvalsth =
812 $dbh->prepare(
813 "SELECT authorised_value,lib
814 FROM authorised_values
815 WHERE category=?
816 ORDER BY lib"
818 $authvalsth->execute($authorisedvaluecat);
819 while ( my ( $authorisedvalue, $lib ) = $authvalsth->fetchrow ) {
820 $itemlocation{$authorisedvalue} = $lib;
822 $authvalsth->finish;
823 return \%itemlocation;
824 exit 1;
826 else {
828 #No authvalue list
829 # build default
831 $sth->finish;
834 #No authvalue list
835 #build default
836 $itemlocation{"1"} = "Not For Loan";
837 return \%itemlocation;
840 =head2 GetLostItems
842 =over 4
844 $items = GetLostItems($where,$orderby);
846 =back
848 This function get the items lost into C<$items>.
850 =over 2
852 =item input:
853 C<$where> is a hashref. it containts a field of the items table as key
854 and the value to match as value.
855 C<$orderby> is a field of the items table.
857 =item return:
858 C<$items> is a reference to an array full of hasref which keys are items' table column.
860 =item usage in the perl script:
862 my %where;
863 $where{barcode} = 0001548;
864 my $items = GetLostItems( \%where, "homebranch" );
865 $template->param(itemsloop => $items);
867 =back
869 =cut
871 sub GetLostItems {
872 # Getting input args.
873 my $where = shift;
874 my $orderby = shift;
875 my $dbh = C4::Context->dbh;
877 my $query = "
878 SELECT *
879 FROM items, biblio, authorised_values
880 WHERE
881 items.biblionumber = biblio.biblionumber
882 AND items.itemlost = authorised_values.authorised_value
883 AND authorised_values.category = 'LOST'
884 AND itemlost IS NOT NULL
885 AND itemlost <> 0
888 foreach my $key (keys %$where) {
889 $query .= " AND " . $key . " LIKE '%" . $where->{$key} . "%'";
891 $query .= " ORDER BY ".$orderby." " if defined $orderby;
893 my $sth = $dbh->prepare($query);
894 $sth->execute;
895 my @items;
896 while ( my $row = $sth->fetchrow_hashref ){
897 push @items, $row;
899 return \@items;
902 =head2 GetItemsForInventory
904 =over 4
906 $itemlist = GetItemsForInventory($minlocation,$maxlocation,$datelastseen,$offset,$size)
908 =back
910 Retrieve a list of title/authors/barcode/callnumber, for biblio inventory.
912 The sub returns a list of hashes, containing itemnumber, author, title, barcode & item callnumber.
913 It is ordered by callnumber,title.
915 The minlocation & maxlocation parameters are used to specify a range of item callnumbers
916 the datelastseen can be used to specify that you want to see items not seen since a past date only.
917 offset & size can be used to retrieve only a part of the whole listing (defaut behaviour)
919 =cut
921 sub GetItemsForInventory {
922 my ( $minlocation, $maxlocation,$location, $itemtype, $datelastseen, $branch, $offset, $size ) = @_;
923 my $dbh = C4::Context->dbh;
924 my $sth;
925 if ($datelastseen) {
926 $datelastseen=format_date_in_iso($datelastseen);
927 my $query =
928 "SELECT itemnumber,barcode,itemcallnumber,title,author,biblio.biblionumber,datelastseen
929 FROM items
930 LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
931 LEFT JOIN biblioitems on items.biblionumber=biblioitems.biblionumber
932 WHERE itemcallnumber>= ?
933 AND itemcallnumber <=?
934 AND (datelastseen< ? OR datelastseen IS NULL)";
935 $query.= " AND items.location=".$dbh->quote($location) if $location;
936 $query.= " AND items.homebranch=".$dbh->quote($branch) if $branch;
937 $query.= " AND biblioitems.itemtype=".$dbh->quote($itemtype) if $itemtype;
938 $query .= " ORDER BY itemcallnumber,title";
939 $sth = $dbh->prepare($query);
940 $sth->execute( $minlocation, $maxlocation, $datelastseen );
942 else {
943 my $query ="
944 SELECT itemnumber,barcode,itemcallnumber,biblio.biblionumber,title,author,datelastseen
945 FROM items
946 LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
947 LEFT JOIN biblioitems on items.biblionumber=biblioitems.biblionumber
948 WHERE itemcallnumber>= ?
949 AND itemcallnumber <=?";
950 $query.= " AND items.location=".$dbh->quote($location) if $location;
951 $query.= " AND items.homebranch=".$dbh->quote($branch) if $branch;
952 $query.= " AND biblioitems.itemtype=".$dbh->quote($itemtype) if $itemtype;
953 $query .= " ORDER BY itemcallnumber,title";
954 $sth = $dbh->prepare($query);
955 $sth->execute( $minlocation, $maxlocation );
957 my @results;
958 $size--;
959 while ( my $row = $sth->fetchrow_hashref ) {
960 $offset-- if ($offset);
961 $row->{datelastseen}=format_date($row->{datelastseen});
962 if ( ( !$offset ) && $size ) {
963 push @results, $row;
964 $size--;
967 return \@results;
970 =head2 GetItemsCount
972 =over 4
973 $count = &GetItemsCount( $biblionumber);
975 =back
977 This function return count of item with $biblionumber
979 =cut
981 sub GetItemsCount {
982 my ( $biblionumber ) = @_;
983 my $dbh = C4::Context->dbh;
984 my $query = "SELECT count(*)
985 FROM items
986 WHERE biblionumber=?";
987 my $sth = $dbh->prepare($query);
988 $sth->execute($biblionumber);
989 my $count = $sth->fetchrow;
990 $sth->finish;
991 return ($count);
994 =head2 GetItemInfosOf
996 =over 4
998 GetItemInfosOf(@itemnumbers);
1000 =back
1002 =cut
1004 sub GetItemInfosOf {
1005 my @itemnumbers = @_;
1007 my $query = '
1008 SELECT *
1009 FROM items
1010 WHERE itemnumber IN (' . join( ',', @itemnumbers ) . ')
1012 return get_infos_of( $query, 'itemnumber' );
1015 =head2 GetItemsByBiblioitemnumber
1017 =over 4
1019 GetItemsByBiblioitemnumber($biblioitemnumber);
1021 =back
1023 Returns an arrayref of hashrefs suitable for use in a TMPL_LOOP
1024 Called by C<C4::XISBN>
1026 =cut
1028 sub GetItemsByBiblioitemnumber {
1029 my ( $bibitem ) = @_;
1030 my $dbh = C4::Context->dbh;
1031 my $sth = $dbh->prepare("SELECT * FROM items WHERE items.biblioitemnumber = ?") || die $dbh->errstr;
1032 # Get all items attached to a biblioitem
1033 my $i = 0;
1034 my @results;
1035 $sth->execute($bibitem) || die $sth->errstr;
1036 while ( my $data = $sth->fetchrow_hashref ) {
1037 # Foreach item, get circulation information
1038 my $sth2 = $dbh->prepare( "SELECT * FROM issues,borrowers
1039 WHERE itemnumber = ?
1040 AND issues.borrowernumber = borrowers.borrowernumber"
1042 $sth2->execute( $data->{'itemnumber'} );
1043 if ( my $data2 = $sth2->fetchrow_hashref ) {
1044 # if item is out, set the due date and who it is out too
1045 $data->{'date_due'} = $data2->{'date_due'};
1046 $data->{'cardnumber'} = $data2->{'cardnumber'};
1047 $data->{'borrowernumber'} = $data2->{'borrowernumber'};
1049 else {
1050 # set date_due to blank, so in the template we check itemlost, and wthdrawn
1051 $data->{'date_due'} = '';
1052 } # else
1053 $sth2->finish;
1054 # Find the last 3 people who borrowed this item.
1055 my $query2 = "SELECT * FROM old_issues, borrowers WHERE itemnumber = ?
1056 AND old_issues.borrowernumber = borrowers.borrowernumber
1057 ORDER BY returndate desc,timestamp desc LIMIT 3";
1058 $sth2 = $dbh->prepare($query2) || die $dbh->errstr;
1059 $sth2->execute( $data->{'itemnumber'} ) || die $sth2->errstr;
1060 my $i2 = 0;
1061 while ( my $data2 = $sth2->fetchrow_hashref ) {
1062 $data->{"timestamp$i2"} = $data2->{'timestamp'};
1063 $data->{"card$i2"} = $data2->{'cardnumber'};
1064 $data->{"borrower$i2"} = $data2->{'borrowernumber'};
1065 $i2++;
1067 $sth2->finish;
1068 push(@results,$data);
1070 $sth->finish;
1071 return (\@results);
1074 =head2 GetItemsInfo
1076 =over 4
1078 @results = GetItemsInfo($biblionumber, $type);
1080 =back
1082 Returns information about books with the given biblionumber.
1084 C<$type> may be either C<intra> or anything else. If it is not set to
1085 C<intra>, then the search will exclude lost, very overdue, and
1086 withdrawn items.
1088 C<GetItemsInfo> returns a list of references-to-hash. Each element
1089 contains a number of keys. Most of them are table items from the
1090 C<biblio>, C<biblioitems>, C<items>, and C<itemtypes> tables in the
1091 Koha database. Other keys include:
1093 =over 2
1095 =item C<$data-E<gt>{branchname}>
1097 The name (not the code) of the branch to which the book belongs.
1099 =item C<$data-E<gt>{datelastseen}>
1101 This is simply C<items.datelastseen>, except that while the date is
1102 stored in YYYY-MM-DD format in the database, here it is converted to
1103 DD/MM/YYYY format. A NULL date is returned as C<//>.
1105 =item C<$data-E<gt>{datedue}>
1107 =item C<$data-E<gt>{class}>
1109 This is the concatenation of C<biblioitems.classification>, the book's
1110 Dewey code, and C<biblioitems.subclass>.
1112 =item C<$data-E<gt>{ocount}>
1114 I think this is the number of copies of the book available.
1116 =item C<$data-E<gt>{order}>
1118 If this is set, it is set to C<One Order>.
1120 =back
1122 =cut
1124 sub GetItemsInfo {
1125 my ( $biblionumber, $type ) = @_;
1126 my $dbh = C4::Context->dbh;
1127 my $query = "SELECT *,items.notforloan as itemnotforloan
1128 FROM items
1129 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
1130 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber";
1131 $query .= (C4::Context->preference('item-level_itypes')) ?
1132 " LEFT JOIN itemtypes on items.itype = itemtypes.itemtype "
1133 : " LEFT JOIN itemtypes on biblioitems.itemtype = itemtypes.itemtype ";
1134 $query .= "WHERE items.biblionumber = ? ORDER BY items.dateaccessioned desc" ;
1135 my $sth = $dbh->prepare($query);
1136 $sth->execute($biblionumber);
1137 my $i = 0;
1138 my @results;
1139 my ( $date_due, $count_reserves, $serial );
1141 my $isth = $dbh->prepare(
1142 "SELECT issues.*,borrowers.cardnumber,borrowers.surname,borrowers.firstname,borrowers.branchcode as bcode
1143 FROM issues LEFT JOIN borrowers ON issues.borrowernumber=borrowers.borrowernumber
1144 WHERE itemnumber = ?"
1146 my $ssth = $dbh->prepare("SELECT serialseq,publisheddate from serialitems left join serial on serialitems.serialid=serial.serialid where serialitems.itemnumber=? ");
1147 while ( my $data = $sth->fetchrow_hashref ) {
1148 my $datedue = '';
1149 $isth->execute( $data->{'itemnumber'} );
1150 if ( my $idata = $isth->fetchrow_hashref ) {
1151 $data->{borrowernumber} = $idata->{borrowernumber};
1152 $data->{cardnumber} = $idata->{cardnumber};
1153 $data->{surname} = $idata->{surname};
1154 $data->{firstname} = $idata->{firstname};
1155 $datedue = $idata->{'date_due'};
1156 if (C4::Context->preference("IndependantBranches")){
1157 my $userenv = C4::Context->userenv;
1158 if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
1159 $data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch});
1163 if ( $data->{'serial'}) {
1164 $ssth->execute($data->{'itemnumber'}) ;
1165 ($data->{'serialseq'} , $data->{'publisheddate'}) = $ssth->fetchrow_array();
1166 $serial = 1;
1168 if ( $datedue eq '' ) {
1169 my ( $restype, $reserves ) =
1170 C4::Reserves::CheckReserves( $data->{'itemnumber'} );
1171 if ($restype) {
1172 $count_reserves = $restype;
1175 $isth->finish;
1176 $ssth->finish;
1177 #get branch information.....
1178 my $bsth = $dbh->prepare(
1179 "SELECT * FROM branches WHERE branchcode = ?
1182 $bsth->execute( $data->{'holdingbranch'} );
1183 if ( my $bdata = $bsth->fetchrow_hashref ) {
1184 $data->{'branchname'} = $bdata->{'branchname'};
1186 $data->{'datedue'} = $datedue;
1187 $data->{'count_reserves'} = $count_reserves;
1189 # get notforloan complete status if applicable
1190 my $sthnflstatus = $dbh->prepare(
1191 'SELECT authorised_value
1192 FROM marc_subfield_structure
1193 WHERE kohafield="items.notforloan"
1197 $sthnflstatus->execute;
1198 my ($authorised_valuecode) = $sthnflstatus->fetchrow;
1199 if ($authorised_valuecode) {
1200 $sthnflstatus = $dbh->prepare(
1201 "SELECT lib FROM authorised_values
1202 WHERE category=?
1203 AND authorised_value=?"
1205 $sthnflstatus->execute( $authorised_valuecode,
1206 $data->{itemnotforloan} );
1207 my ($lib) = $sthnflstatus->fetchrow;
1208 $data->{notforloanvalue} = $lib;
1211 # my stack procedures
1212 my $stackstatus = $dbh->prepare(
1213 'SELECT authorised_value
1214 FROM marc_subfield_structure
1215 WHERE kohafield="items.stack"
1218 $stackstatus->execute;
1220 ($authorised_valuecode) = $stackstatus->fetchrow;
1221 if ($authorised_valuecode) {
1222 $stackstatus = $dbh->prepare(
1223 "SELECT lib
1224 FROM authorised_values
1225 WHERE category=?
1226 AND authorised_value=?
1229 $stackstatus->execute( $authorised_valuecode, $data->{stack} );
1230 my ($lib) = $stackstatus->fetchrow;
1231 $data->{stack} = $lib;
1233 # Find the last 3 people who borrowed this item.
1234 my $sth2 = $dbh->prepare("SELECT * FROM old_issues,borrowers
1235 WHERE itemnumber = ?
1236 AND old_issues.borrowernumber = borrowers.borrowernumber
1237 LIMIT 3");
1238 $sth2->execute($data->{'itemnumber'});
1239 my $ii = 0;
1240 while (my $data2 = $sth2->fetchrow_hashref()) {
1241 $data->{"timestamp$ii"} = $data2->{'timestamp'} if $data2->{'timestamp'};
1242 $data->{"card$ii"} = $data2->{'cardnumber'} if $data2->{'cardnumber'};
1243 $data->{"borrower$ii"} = $data2->{'borrowernumber'} if $data2->{'borrowernumber'};
1244 $ii++;
1247 $results[$i] = $data;
1248 $i++;
1250 $sth->finish;
1251 if($serial) {
1252 return( sort { $b->{'publisheddate'} cmp $a->{'publisheddate'} } @results );
1253 } else {
1254 return (@results);
1258 =head2 get_itemnumbers_of
1260 =over 4
1262 my @itemnumbers_of = get_itemnumbers_of(@biblionumbers);
1264 =back
1266 Given a list of biblionumbers, return the list of corresponding itemnumbers
1267 for each biblionumber.
1269 Return a reference on a hash where keys are biblionumbers and values are
1270 references on array of itemnumbers.
1272 =cut
1274 sub get_itemnumbers_of {
1275 my @biblionumbers = @_;
1277 my $dbh = C4::Context->dbh;
1279 my $query = '
1280 SELECT itemnumber,
1281 biblionumber
1282 FROM items
1283 WHERE biblionumber IN (?' . ( ',?' x scalar @biblionumbers - 1 ) . ')
1285 my $sth = $dbh->prepare($query);
1286 $sth->execute(@biblionumbers);
1288 my %itemnumbers_of;
1290 while ( my ( $itemnumber, $biblionumber ) = $sth->fetchrow_array ) {
1291 push @{ $itemnumbers_of{$biblionumber} }, $itemnumber;
1294 return \%itemnumbers_of;
1297 =head2 GetItemnumberFromBarcode
1299 =over 4
1301 $result = GetItemnumberFromBarcode($barcode);
1303 =back
1305 =cut
1307 sub GetItemnumberFromBarcode {
1308 my ($barcode) = @_;
1309 my $dbh = C4::Context->dbh;
1311 my $rq =
1312 $dbh->prepare("SELECT itemnumber FROM items WHERE items.barcode=?");
1313 $rq->execute($barcode);
1314 my ($result) = $rq->fetchrow;
1315 return ($result);
1318 =head1 LIMITED USE FUNCTIONS
1320 The following functions, while part of the public API,
1321 are not exported. This is generally because they are
1322 meant to be used by only one script for a specific
1323 purpose, and should not be used in any other context
1324 without careful thought.
1326 =cut
1328 =head2 GetMarcItem
1330 =over 4
1332 my $item_marc = GetMarcItem($biblionumber, $itemnumber);
1334 =back
1336 Returns MARC::Record of the item passed in parameter.
1337 This function is meant for use only in C<cataloguing/additem.pl>,
1338 where it is needed to support that script's MARC-like
1339 editor.
1341 =cut
1343 sub GetMarcItem {
1344 my ( $biblionumber, $itemnumber ) = @_;
1346 # GetMarcItem has been revised so that it does the following:
1347 # 1. Gets the item information from the items table.
1348 # 2. Converts it to a MARC field for storage in the bib record.
1350 # The previous behavior was:
1351 # 1. Get the bib record.
1352 # 2. Return the MARC tag corresponding to the item record.
1354 # The difference is that one treats the items row as authoritative,
1355 # while the other treats the MARC representation as authoritative
1356 # under certain circumstances.
1358 my $itemrecord = GetItem($itemnumber);
1360 # Tack on 'items.' prefix to column names so that TransformKohaToMarc will work.
1361 # Also, don't emit a subfield if the underlying field is blank.
1362 my $mungeditem = { map { $itemrecord->{$_} ne '' ? ("items.$_" => $itemrecord->{$_}) : () } keys %{ $itemrecord } };
1363 my $itemmarc = TransformKohaToMarc($mungeditem);
1365 my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($mungeditem->{'items.more_subfields_xml'});
1366 if (defined $unlinked_item_subfields and $#$unlinked_item_subfields > -1) {
1367 my @fields = $itemmarc->fields();
1368 if ($#fields > -1) {
1369 $fields[0]->add_subfields(@$unlinked_item_subfields);
1373 return $itemmarc;
1377 =head1 PRIVATE FUNCTIONS AND VARIABLES
1379 The following functions are not meant to be called
1380 directly, but are documented in order to explain
1381 the inner workings of C<C4::Items>.
1383 =cut
1385 =head2 %derived_columns
1387 This hash keeps track of item columns that
1388 are strictly derived from other columns in
1389 the item record and are not meant to be set
1390 independently.
1392 Each key in the hash should be the name of a
1393 column (as named by TransformMarcToKoha). Each
1394 value should be hashref whose keys are the
1395 columns on which the derived column depends. The
1396 hashref should also contain a 'BUILDER' key
1397 that is a reference to a sub that calculates
1398 the derived value.
1400 =cut
1402 my %derived_columns = (
1403 'items.cn_sort' => {
1404 'itemcallnumber' => 1,
1405 'items.cn_source' => 1,
1406 'BUILDER' => \&_calc_items_cn_sort,
1410 =head2 _set_derived_columns_for_add
1412 =over 4
1414 _set_derived_column_for_add($item);
1416 =back
1418 Given an item hash representing a new item to be added,
1419 calculate any derived columns. Currently the only
1420 such column is C<items.cn_sort>.
1422 =cut
1424 sub _set_derived_columns_for_add {
1425 my $item = shift;
1427 foreach my $column (keys %derived_columns) {
1428 my $builder = $derived_columns{$column}->{'BUILDER'};
1429 my $source_values = {};
1430 foreach my $source_column (keys %{ $derived_columns{$column} }) {
1431 next if $source_column eq 'BUILDER';
1432 $source_values->{$source_column} = $item->{$source_column};
1434 $builder->($item, $source_values);
1438 =head2 _set_derived_columns_for_mod
1440 =over 4
1442 _set_derived_column_for_mod($item);
1444 =back
1446 Given an item hash representing a new item to be modified.
1447 calculate any derived columns. Currently the only
1448 such column is C<items.cn_sort>.
1450 This routine differs from C<_set_derived_columns_for_add>
1451 in that it needs to handle partial item records. In other
1452 words, the caller of C<ModItem> may have supplied only one
1453 or two columns to be changed, so this function needs to
1454 determine whether any of the columns to be changed affect
1455 any of the derived columns. Also, if a derived column
1456 depends on more than one column, but the caller is not
1457 changing all of then, this routine retrieves the unchanged
1458 values from the database in order to ensure a correct
1459 calculation.
1461 =cut
1463 sub _set_derived_columns_for_mod {
1464 my $item = shift;
1466 foreach my $column (keys %derived_columns) {
1467 my $builder = $derived_columns{$column}->{'BUILDER'};
1468 my $source_values = {};
1469 my %missing_sources = ();
1470 my $must_recalc = 0;
1471 foreach my $source_column (keys %{ $derived_columns{$column} }) {
1472 next if $source_column eq 'BUILDER';
1473 if (exists $item->{$source_column}) {
1474 $must_recalc = 1;
1475 $source_values->{$source_column} = $item->{$source_column};
1476 } else {
1477 $missing_sources{$source_column} = 1;
1480 if ($must_recalc) {
1481 foreach my $source_column (keys %missing_sources) {
1482 $source_values->{$source_column} = _get_single_item_column($source_column, $item->{'itemnumber'});
1484 $builder->($item, $source_values);
1489 =head2 _do_column_fixes_for_mod
1491 =over 4
1493 _do_column_fixes_for_mod($item);
1495 =back
1497 Given an item hashref containing one or more
1498 columns to modify, fix up certain values.
1499 Specifically, set to 0 any passed value
1500 of C<notforloan>, C<damaged>, C<itemlost>, or
1501 C<wthdrawn> that is either undefined or
1502 contains the empty string.
1504 =cut
1506 sub _do_column_fixes_for_mod {
1507 my $item = shift;
1509 if (exists $item->{'notforloan'} and
1510 (not defined $item->{'notforloan'} or $item->{'notforloan'} eq '')) {
1511 $item->{'notforloan'} = 0;
1513 if (exists $item->{'damaged'} and
1514 (not defined $item->{'damaged'} or $item->{'damaged'} eq '')) {
1515 $item->{'damaged'} = 0;
1517 if (exists $item->{'itemlost'} and
1518 (not defined $item->{'itemlost'} or $item->{'itemlost'} eq '')) {
1519 $item->{'itemlost'} = 0;
1521 if (exists $item->{'wthdrawn'} and
1522 (not defined $item->{'wthdrawn'} or $item->{'wthdrawn'} eq '')) {
1523 $item->{'wthdrawn'} = 0;
1527 =head2 _get_single_item_column
1529 =over 4
1531 _get_single_item_column($column, $itemnumber);
1533 =back
1535 Retrieves the value of a single column from an C<items>
1536 row specified by C<$itemnumber>.
1538 =cut
1540 sub _get_single_item_column {
1541 my $column = shift;
1542 my $itemnumber = shift;
1544 my $dbh = C4::Context->dbh;
1545 my $sth = $dbh->prepare("SELECT $column FROM items WHERE itemnumber = ?");
1546 $sth->execute($itemnumber);
1547 my ($value) = $sth->fetchrow();
1548 return $value;
1551 =head2 _calc_items_cn_sort
1553 =over 4
1555 _calc_items_cn_sort($item, $source_values);
1557 =back
1559 Helper routine to calculate C<items.cn_sort>.
1561 =cut
1563 sub _calc_items_cn_sort {
1564 my $item = shift;
1565 my $source_values = shift;
1567 $item->{'items.cn_sort'} = GetClassSort($source_values->{'items.cn_source'}, $source_values->{'itemcallnumber'}, "");
1570 =head2 _set_defaults_for_add
1572 =over 4
1574 _set_defaults_for_add($item_hash);
1576 =back
1578 Given an item hash representing an item to be added, set
1579 correct default values for columns whose default value
1580 is not handled by the DBMS. This includes the following
1581 columns:
1583 =over 2
1585 =item *
1587 C<items.dateaccessioned>
1589 =item *
1591 C<items.notforloan>
1593 =item *
1595 C<items.damaged>
1597 =item *
1599 C<items.itemlost>
1601 =item *
1603 C<items.wthdrawn>
1605 =back
1607 =cut
1609 sub _set_defaults_for_add {
1610 my $item = shift;
1612 # if dateaccessioned is provided, use it. Otherwise, set to NOW()
1613 if (!(exists $item->{'dateaccessioned'}) ||
1614 ($item->{'dateaccessioned'} eq '')) {
1615 # FIXME add check for invalid date
1616 my $today = C4::Dates->new();
1617 $item->{'dateaccessioned'} = $today->output("iso"); #TODO: check time issues
1620 # various item status fields cannot be null
1621 $item->{'notforloan'} = 0 unless exists $item->{'notforloan'} and defined $item->{'notforloan'} and $item->{'notforloan'} ne '';
1622 $item->{'damaged'} = 0 unless exists $item->{'damaged'} and defined $item->{'damaged'} and $item->{'damaged'} ne '';
1623 $item->{'itemlost'} = 0 unless exists $item->{'itemlost'} and defined $item->{'itemlost'} and $item->{'itemlost'} ne '';
1624 $item->{'wthdrawn'} = 0 unless exists $item->{'wthdrawn'} and defined $item->{'wthdrawn'} and $item->{'wthdrawn'} ne '';
1627 =head2 _koha_new_item
1629 =over 4
1631 my ($itemnumber,$error) = _koha_new_item( $item, $barcode );
1633 =back
1635 Perform the actual insert into the C<items> table.
1637 =cut
1639 sub _koha_new_item {
1640 my ( $item, $barcode ) = @_;
1641 my $dbh=C4::Context->dbh;
1642 my $error;
1643 my $query =
1644 "INSERT INTO items SET
1645 biblionumber = ?,
1646 biblioitemnumber = ?,
1647 barcode = ?,
1648 dateaccessioned = ?,
1649 booksellerid = ?,
1650 homebranch = ?,
1651 price = ?,
1652 replacementprice = ?,
1653 replacementpricedate = NOW(),
1654 datelastborrowed = ?,
1655 datelastseen = NOW(),
1656 stack = ?,
1657 notforloan = ?,
1658 damaged = ?,
1659 itemlost = ?,
1660 wthdrawn = ?,
1661 itemcallnumber = ?,
1662 restricted = ?,
1663 itemnotes = ?,
1664 holdingbranch = ?,
1665 paidfor = ?,
1666 location = ?,
1667 onloan = ?,
1668 issues = ?,
1669 renewals = ?,
1670 reserves = ?,
1671 cn_source = ?,
1672 cn_sort = ?,
1673 ccode = ?,
1674 itype = ?,
1675 materials = ?,
1676 uri = ?,
1677 more_subfields_xml = ?
1679 my $sth = $dbh->prepare($query);
1680 $sth->execute(
1681 $item->{'biblionumber'},
1682 $item->{'biblioitemnumber'},
1683 $barcode,
1684 $item->{'dateaccessioned'},
1685 $item->{'booksellerid'},
1686 $item->{'homebranch'},
1687 $item->{'price'},
1688 $item->{'replacementprice'},
1689 $item->{datelastborrowed},
1690 $item->{stack},
1691 $item->{'notforloan'},
1692 $item->{'damaged'},
1693 $item->{'itemlost'},
1694 $item->{'wthdrawn'},
1695 $item->{'itemcallnumber'},
1696 $item->{'restricted'},
1697 $item->{'itemnotes'},
1698 $item->{'holdingbranch'},
1699 $item->{'paidfor'},
1700 $item->{'location'},
1701 $item->{'onloan'},
1702 $item->{'issues'},
1703 $item->{'renewals'},
1704 $item->{'reserves'},
1705 $item->{'items.cn_source'},
1706 $item->{'items.cn_sort'},
1707 $item->{'ccode'},
1708 $item->{'itype'},
1709 $item->{'materials'},
1710 $item->{'uri'},
1711 $item->{'more_subfields_xml'},
1713 my $itemnumber = $dbh->{'mysql_insertid'};
1714 if ( defined $sth->errstr ) {
1715 $error.="ERROR in _koha_new_item $query".$sth->errstr;
1717 $sth->finish();
1718 return ( $itemnumber, $error );
1721 =head2 _koha_modify_item
1723 =over 4
1725 my ($itemnumber,$error) =_koha_modify_item( $item );
1727 =back
1729 Perform the actual update of the C<items> row. Note that this
1730 routine accepts a hashref specifying the columns to update.
1732 =cut
1734 sub _koha_modify_item {
1735 my ( $item ) = @_;
1736 my $dbh=C4::Context->dbh;
1737 my $error;
1739 my $query = "UPDATE items SET ";
1740 my @bind;
1741 for my $key ( keys %$item ) {
1742 $query.="$key=?,";
1743 push @bind, $item->{$key};
1745 $query =~ s/,$//;
1746 $query .= " WHERE itemnumber=?";
1747 push @bind, $item->{'itemnumber'};
1748 my $sth = C4::Context->dbh->prepare($query);
1749 $sth->execute(@bind);
1750 if ( C4::Context->dbh->errstr ) {
1751 $error.="ERROR in _koha_modify_item $query".$dbh->errstr;
1752 warn $error;
1754 $sth->finish();
1755 return ($item->{'itemnumber'},$error);
1758 =head2 _koha_delete_item
1760 =over 4
1762 _koha_delete_item( $dbh, $itemnum );
1764 =back
1766 Internal function to delete an item record from the koha tables
1768 =cut
1770 sub _koha_delete_item {
1771 my ( $dbh, $itemnum ) = @_;
1773 # save the deleted item to deleteditems table
1774 my $sth = $dbh->prepare("SELECT * FROM items WHERE itemnumber=?");
1775 $sth->execute($itemnum);
1776 my $data = $sth->fetchrow_hashref();
1777 $sth->finish();
1778 my $query = "INSERT INTO deleteditems SET ";
1779 my @bind = ();
1780 foreach my $key ( keys %$data ) {
1781 $query .= "$key = ?,";
1782 push( @bind, $data->{$key} );
1784 $query =~ s/\,$//;
1785 $sth = $dbh->prepare($query);
1786 $sth->execute(@bind);
1787 $sth->finish();
1789 # delete from items table
1790 $sth = $dbh->prepare("DELETE FROM items WHERE itemnumber=?");
1791 $sth->execute($itemnum);
1792 $sth->finish();
1793 return undef;
1796 =head2 _marc_from_item_hash
1798 =over 4
1800 my $item_marc = _marc_from_item_hash($item, $frameworkcode[, $unlinked_item_subfields]);
1802 =back
1804 Given an item hash representing a complete item record,
1805 create a C<MARC::Record> object containing an embedded
1806 tag representing that item.
1808 The third, optional parameter C<$unlinked_item_subfields> is
1809 an arrayref of subfields (not mapped to C<items> fields per the
1810 framework) to be added to the MARC representation
1811 of the item.
1813 =cut
1815 sub _marc_from_item_hash {
1816 my $item = shift;
1817 my $frameworkcode = shift;
1818 my $unlinked_item_subfields;
1819 if (@_) {
1820 $unlinked_item_subfields = shift;
1823 # Tack on 'items.' prefix to column names so lookup from MARC frameworks will work
1824 # Also, don't emit a subfield if the underlying field is blank.
1825 my $mungeditem = { map { (defined($item->{$_}) and $item->{$_} ne '') ?
1826 (/^items\./ ? ($_ => $item->{$_}) : ("items.$_" => $item->{$_}))
1827 : () } keys %{ $item } };
1829 my $item_marc = MARC::Record->new();
1830 foreach my $item_field (keys %{ $mungeditem }) {
1831 my ($tag, $subfield) = GetMarcFromKohaField($item_field, $frameworkcode);
1832 next unless defined $tag and defined $subfield; # skip if not mapped to MARC field
1833 if (my $field = $item_marc->field($tag)) {
1834 $field->add_subfields($subfield => $mungeditem->{$item_field});
1835 } else {
1836 my $add_subfields = [];
1837 if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
1838 $add_subfields = $unlinked_item_subfields;
1840 $item_marc->add_fields( $tag, " ", " ", $subfield => $mungeditem->{$item_field}, @$add_subfields);
1844 return $item_marc;
1847 =head2 _add_item_field_to_biblio
1849 =over 4
1851 _add_item_field_to_biblio($item_marc, $biblionumber, $frameworkcode);
1853 =back
1855 Adds the fields from a MARC record containing the
1856 representation of a Koha item record to the MARC
1857 biblio record. The input C<$item_marc> record
1858 is expect to contain just one field, the embedded
1859 item information field.
1861 =cut
1863 sub _add_item_field_to_biblio {
1864 my ($item_marc, $biblionumber, $frameworkcode) = @_;
1866 my $biblio_marc = GetMarcBiblio($biblionumber);
1868 foreach my $field ($item_marc->fields()) {
1869 $biblio_marc->append_fields($field);
1872 ModBiblioMarc($biblio_marc, $biblionumber, $frameworkcode);
1875 =head2 _replace_item_field_in_biblio
1877 =over
1879 &_replace_item_field_in_biblio($item_marc, $biblionumber, $itemnumber, $frameworkcode)
1881 =back
1883 Given a MARC::Record C<$item_marc> containing one tag with the MARC
1884 representation of the item, examine the biblio MARC
1885 for the corresponding tag for that item and
1886 replace it with the tag from C<$item_marc>.
1888 =cut
1890 sub _replace_item_field_in_biblio {
1891 my ($ItemRecord, $biblionumber, $itemnumber, $frameworkcode) = @_;
1892 my $dbh = C4::Context->dbh;
1894 # get complete MARC record & replace the item field by the new one
1895 my $completeRecord = GetMarcBiblio($biblionumber);
1896 my ($itemtag,$itemsubfield) = GetMarcFromKohaField("items.itemnumber",$frameworkcode);
1897 my $itemField = $ItemRecord->field($itemtag);
1898 my @items = $completeRecord->field($itemtag);
1899 my $found = 0;
1900 foreach (@items) {
1901 if ($_->subfield($itemsubfield) eq $itemnumber) {
1902 $_->replace_with($itemField);
1903 $found = 1;
1907 unless ($found) {
1908 # If we haven't found the matching field,
1909 # just add it. However, this means that
1910 # there is likely a bug.
1911 $completeRecord->append_fields($itemField);
1914 # save the record
1915 ModBiblioMarc($completeRecord, $biblionumber, $frameworkcode);
1918 =head2 _repack_item_errors
1920 Add an error message hash generated by C<CheckItemPreSave>
1921 to a list of errors.
1923 =cut
1925 sub _repack_item_errors {
1926 my $item_sequence_num = shift;
1927 my $item_ref = shift;
1928 my $error_ref = shift;
1930 my @repacked_errors = ();
1932 foreach my $error_code (sort keys %{ $error_ref }) {
1933 my $repacked_error = {};
1934 $repacked_error->{'item_sequence'} = $item_sequence_num;
1935 $repacked_error->{'item_barcode'} = exists($item_ref->{'barcode'}) ? $item_ref->{'barcode'} : '';
1936 $repacked_error->{'error_code'} = $error_code;
1937 $repacked_error->{'error_information'} = $error_ref->{$error_code};
1938 push @repacked_errors, $repacked_error;
1941 return @repacked_errors;
1944 =head2 _get_unlinked_item_subfields
1946 =over 4
1948 my $unlinked_item_subfields = _get_unlinked_item_subfields($original_item_marc, $frameworkcode);
1950 =back
1952 =cut
1954 sub _get_unlinked_item_subfields {
1955 my $original_item_marc = shift;
1956 my $frameworkcode = shift;
1958 my $marcstructure = GetMarcStructure(1, $frameworkcode);
1960 # assume that this record has only one field, and that that
1961 # field contains only the item information
1962 my $subfields = [];
1963 my @fields = $original_item_marc->fields();
1964 if ($#fields > -1) {
1965 my $field = $fields[0];
1966 my $tag = $field->tag();
1967 foreach my $subfield ($field->subfields()) {
1968 if (defined $subfield->[1] and
1969 $subfield->[1] ne '' and
1970 !$marcstructure->{$tag}->{$subfield->[0]}->{'kohafield'}) {
1971 push @$subfields, $subfield->[0] => $subfield->[1];
1975 return $subfields;
1978 =head2 _get_unlinked_subfields_xml
1980 =over 4
1982 my $unlinked_subfields_xml = _get_unlinked_subfields_xml($unlinked_item_subfields);
1984 =back
1986 =cut
1988 sub _get_unlinked_subfields_xml {
1989 my $unlinked_item_subfields = shift;
1991 my $xml;
1992 if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
1993 my $marc = MARC::Record->new();
1994 # use of tag 999 is arbitrary, and doesn't need to match the item tag
1995 # used in the framework
1996 $marc->append_fields(MARC::Field->new('999', ' ', ' ', @$unlinked_item_subfields));
1997 $xml = $marc->as_xml();
2000 return $xml;
2003 =head2 _parse_unlinked_item_subfields_from_xml
2005 =over 4
2007 my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($whole_item->{'more_subfields_xml'}):
2009 =back
2011 =cut
2013 sub _parse_unlinked_item_subfields_from_xml {
2014 my $xml = shift;
2016 return unless defined $xml and $xml ne "";
2017 my $marc = MARC::Record->new_from_xml(StripNonXmlChars($xml), 'UTF-8', C4::Context->preference("marcflavour"));
2018 my $unlinked_subfields = [];
2019 my @fields = $marc->fields();
2020 if ($#fields > -1) {
2021 foreach my $subfield ($fields[0]->subfields()) {
2022 push @$unlinked_subfields, $subfield->[0] => $subfield->[1];
2025 return $unlinked_subfields;