1 package C4
::ILSDI
::Services
;
3 # Copyright 2009 SARL Biblibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
28 use C4
::Reserves
qw(AddReserve CanBookBeReserved CanItemBeReserved IsAvailableForItemLevelRequest);
30 use C4
::AuthoritiesMarc
;
46 C4::ILS-DI::Services - ILS-DI Services
50 Each function in this module represents an ILS-DI service.
51 They all takes a CGI instance as argument and most of them return a
52 hashref that will be printed by XML::Simple in opac/ilsdi.pl
56 use C4::ILSDI::Services;
62 $out = LookupPatron($cgi);
64 print CGI::header('text/xml');
69 xmldecl => '<?xml version="1.0" encoding="UTF-8" ?>',
70 RootName => 'LookupPatron',
77 =head2 GetAvailability
79 Given a set of biblionumbers or itemnumbers, returns a list with
80 availability of the items associated with the identifiers.
86 list of either biblionumbers or itemnumbers
88 =head3 id_type (Required)
90 defines the type of record identifier being used in the request,
96 =head3 return_type (Optional)
98 requests a particular level of detail in reporting availability,
104 =head3 return_fmt (Optional)
106 requests a particular format or set of formats in reporting
111 sub GetAvailability
{
114 my $out = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n";
115 $out .= "<dlf:collection\n";
116 $out .= " xmlns:dlf=\"http://diglib.org/ilsdi/1.1\"\n";
117 $out .= " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n";
118 $out .= " xsi:schemaLocation=\"http://diglib.org/ilsdi/1.1\n";
119 $out .= " http://diglib.org/architectures/ilsdi/schemas/1.1/dlfexpanded.xsd\">\n";
121 foreach my $id ( split( / /, $cgi->param('id') ) ) {
122 if ( $cgi->param('id_type') eq "item" ) {
123 my ( $biblionumber, $status, $msg, $location ) = _availability
($id);
125 $out .= " <dlf:record>\n";
126 $out .= " <dlf:bibliographic id=\"" . ( $biblionumber || $id ) . "\" />\n";
127 $out .= " <dlf:items>\n";
128 $out .= " <dlf:item id=\"" . $id . "\">\n";
129 $out .= " <dlf:simpleavailability>\n";
130 $out .= " <dlf:identifier>" . $id . "</dlf:identifier>\n";
131 $out .= " <dlf:availabilitystatus>" . $status . "</dlf:availabilitystatus>\n";
132 if ($msg) { $out .= " <dlf:availabilitymsg>" . $msg . "</dlf:availabilitymsg>\n"; }
133 if ($location) { $out .= " <dlf:location>" . $location . "</dlf:location>\n"; }
134 $out .= " </dlf:simpleavailability>\n";
135 $out .= " </dlf:item>\n";
136 $out .= " </dlf:items>\n";
137 $out .= " </dlf:record>\n";
141 my $items = Koha
::Items
->search({ biblionumber
=> $id });
144 $out .= " <dlf:record>\n";
145 $out .= " <dlf:bibliographic id=\"" .$id. "\" />\n";
146 $out .= " <dlf:items>\n";
147 # We loop over the items to clean them
148 while ( my $item = $items->next ) {
149 my $itemnumber = $item->itemnumber;
150 my ( $biblionumber, $status, $msg, $location ) = _availability
($itemnumber);
151 $out .= " <dlf:item id=\"" . $itemnumber . "\">\n";
152 $out .= " <dlf:simpleavailability>\n";
153 $out .= " <dlf:identifier>" . $itemnumber . "</dlf:identifier>\n";
154 $out .= " <dlf:availabilitystatus>" . $status . "</dlf:availabilitystatus>\n";
155 if ($msg) { $out .= " <dlf:availabilitymsg>" . $msg . "</dlf:availabilitymsg>\n"; }
156 if ($location) { $out .= " <dlf:location>" . $location . "</dlf:location>\n"; }
157 $out .= " </dlf:simpleavailability>\n";
158 $out .= " </dlf:item>\n";
161 $out .= " </dlf:items>\n";
162 $out .= " </dlf:record>\n";
165 $msg = "Error: could not retrieve availability for this ID";
169 $out .= "</dlf:collection>\n";
176 Given a list of biblionumbers, returns a list of record objects that
177 contain bibliographic information, as well as associated holdings and item
178 information. The caller may request a specific metadata schema for the
179 record objects to be returned.
181 This function behaves similarly to HarvestBibliographicRecords and
182 HarvestExpandedRecords in Data Aggregation, but allows quick, real time
183 lookup by bibliographic identifier.
185 You can use OAI-PMH ListRecords instead of this service.
190 list of system record identifiers
192 Defines the metadata schema in which the records are returned,
201 # Check if the schema is supported. For now, GetRecords only supports MARCXML
202 if ( $cgi->param('schema') and $cgi->param('schema') ne "MARCXML" ) {
203 return { code
=> 'UnsupportedSchema' };
208 # Loop over biblionumbers
209 foreach my $biblionumber ( split( / /, $cgi->param('id') ) ) {
211 # Get the biblioitem from the biblionumber
212 my $biblio = Koha
::Biblios
->find( $biblionumber );
214 push @records, { code
=> "RecordNotFound" };
218 my $biblioitem = $biblio->biblioitem->unblessed;
221 my $record = GetMarcBiblio
({
222 biblionumber
=> $biblionumber,
223 embed_items
=> $embed_items });
225 $biblioitem->{marcxml
} = $record->as_xml_record();
228 # Get most of the needed data
229 my $biblioitemnumber = $biblioitem->{'biblioitemnumber'};
230 my $holds = $biblio->current_holds->unblessed;
231 my $issues = GetBiblioIssues
($biblionumber);
232 my @items = $biblio->items->as_list;
234 $biblioitem->{items
}->{item
} = [];
236 # We loop over the items to clean them
237 foreach my $item (@items) {
238 my %item = %{ $item->unblessed };
240 # This hides additionnal XML subfields, we don't need these info
241 delete $item{'more_subfields_xml'};
243 # Display branch names instead of branch codes
244 my $home_library = $item->home_branch;
245 my $holding_library = $item->holding_branch;
246 $item{'homebranchname'} = $home_library ?
$home_library->branchname : '';
247 $item{'holdingbranchname'} = $holding_library ?
$holding_library->branchname : '';
249 if ($item->location) {
250 my $authorised_value = Koha
::AuthorisedValues
->find_by_koha_field({ kohafield
=> 'items.location', authorised_value
=> $item->location });
251 if ($authorised_value) {
252 $item{location_description
} = $authorised_value->opac_description;
257 my $itemtype = Koha
::ItemTypes
->find($item->itype);
259 $item{itype_description
} = $itemtype->description;
263 my $transfer = $item->get_transfer;
266 datesent
=> $transfer->datesent,
267 frombranch
=> $transfer->frombranch,
268 tobranch
=> $transfer->tobranch,
272 push @
{ $biblioitem->{items
}->{item
} }, \
%item;
275 # Hashref building...
276 $biblioitem->{'reserves'}->{'reserve'} = $holds;
277 $biblioitem->{'issues'}->{'issue'} = $issues;
279 push @records, $biblioitem;
282 return { record
=> \
@records };
285 =head2 GetAuthorityRecords
287 Given a list of authority record identifiers, returns a list of record
288 objects that contain the authority records. The function user may request
289 a specific metadata schema for the record objects.
294 list of authority record identifiers
296 specifies the metadata schema of records to be returned, possible values:
301 sub GetAuthorityRecords
{
304 # If the user asks for an unsupported schema, return an error code
305 if ( $cgi->param('schema') and $cgi->param('schema') ne "MARCXML" ) {
306 return { code
=> 'UnsupportedSchema' };
311 # Let's loop over the authority IDs
312 foreach my $authid ( split( / /, $cgi->param('id') ) ) {
314 # Get the record as XML string, or error code
315 push @records, GetAuthorityXML
($authid) || { code
=> 'RecordNotFound' };
318 return { record
=> \
@records };
323 Looks up a patron in the ILS by an identifier, and returns the borrowernumber.
328 an identifier used to look up the patron in Koha
330 the type of the identifier, possible values:
343 my $id = $cgi->param('id');
345 return { message
=> 'PatronNotFound' };
349 my $passed_id_type = $cgi->param('id_type');
350 if($passed_id_type) {
351 $patrons = Koha
::Patrons
->search( { $passed_id_type => $id } );
353 foreach my $id_type ('cardnumber', 'userid', 'email', 'borrowernumber',
354 'surname', 'firstname') {
355 $patrons = Koha
::Patrons
->search( { $id_type => $id } );
356 last if($patrons->count);
359 unless ( $patrons->count ) {
360 return { message
=> 'PatronNotFound' };
363 return { id
=> $patrons->next->borrowernumber };
366 =head2 AuthenticatePatron
368 Authenticates a user's login credentials and returns the identifier for
373 - username (Required)
374 user's login identifier (userid or cardnumber)
375 - password (Required)
380 sub AuthenticatePatron
{
382 my $username = $cgi->param('username');
383 my $password = $cgi->param('password');
384 my ($status, $cardnumber, $userid) = C4
::Auth
::checkpw
( C4
::Context
->dbh, $username, $password );
387 my $patron = Koha
::Patrons
->find( { userid
=> $userid } );
388 return { id
=> $patron->borrowernumber };
391 return { code
=> 'PatronNotFound' };
397 Returns specified information about the patron, based on options in the
398 request. This function can optionally return patron's contact information,
399 fine information, hold request information, and loan information.
403 - patron_id (Required)
405 - show_contact (Optional, default 1)
406 whether or not to return patron's contact information in the response
407 - show_fines (Optional, default 0)
408 whether or not to return fine information in the response
409 - show_holds (Optional, default 0)
410 whether or not to return hold request information in the response
411 - show_loans (Optional, default 0)
412 whether or not to return loan information request information in the response
413 - show_attributes (Optional, default 0)
414 whether or not to return additional patron attributes, when enabled the attributes
415 are limited to those marked as opac visible only.
423 my $borrowernumber = $cgi->param('patron_id');
424 my $patron = Koha
::Patrons
->find( $borrowernumber );
425 return { code
=> 'PatronNotFound' } unless $patron;
427 # Cleaning the borrower hashref
428 my $borrower = $patron->unblessed;
429 $borrower->{charges
} = sprintf "%.02f", $patron->account->non_issues_charges; # FIXME Formatting should not be done here
430 my $library = Koha
::Libraries
->find( $borrower->{branchcode
} );
431 $borrower->{'branchname'} = $library ?
$library->branchname : '';
432 delete $borrower->{'userid'};
433 delete $borrower->{'password'};
435 # Contact fields management
436 if ( defined $cgi->param('show_contact') && $cgi->param('show_contact') eq "0" ) {
438 # Define contact fields
439 my @contactfields = (
440 'email', 'emailpro', 'fax', 'mobile', 'phone', 'phonepro',
441 'streetnumber', 'zipcode', 'city', 'streettype', 'B_address', 'B_city',
442 'B_email', 'B_phone', 'B_zipcode', 'address', 'address2', 'altcontactaddress1',
443 'altcontactaddress2', 'altcontactaddress3', 'altcontactfirstname', 'altcontactphone', 'altcontactsurname', 'altcontactzipcode'
447 foreach my $field (@contactfields) {
448 delete $borrower->{$field};
453 if ( $cgi->param('show_fines') && $cgi->param('show_fines') eq "1" ) {
454 $borrower->{fines
}{fine
} = $patron->account->lines->unblessed;
457 # Reserves management
458 if ( $cgi->param('show_holds') && $cgi->param('show_holds') eq "1" ) {
460 # Get borrower's reserves
461 my $holds = $patron->holds;
462 while ( my $hold = $holds->next ) {
464 my ( $item, $biblio, $biblioitem ) = ( {}, {}, {} );
465 # Get additional informations
466 if ( $hold->itemnumber ) { # item level holds
467 $item = Koha
::Items
->find( $hold->itemnumber );
468 $biblio = $item->biblio;
469 $biblioitem = $biblio->biblioitem;
471 # Remove unwanted fields
472 $item = $item->unblessed;
473 delete $item->{more_subfields_xml
};
474 $biblio = $biblio->unblessed;
475 $biblioitem = $biblioitem->unblessed;
478 # Add additional fields
479 my $unblessed_hold = $hold->unblessed;
480 $unblessed_hold->{item
} = { %$item, %$biblio, %$biblioitem };
481 my $library = Koha
::Libraries
->find( $hold->branchcode );
482 my $branchname = $library ?
$library->branchname : '';
483 $unblessed_hold->{branchname
} = $branchname;
484 $biblio = Koha
::Biblios
->find( $hold->biblionumber ); # Should be $hold->get_biblio
485 $unblessed_hold->{title
} = $biblio ?
$biblio->title : ''; # Just in case, but should not be needed
487 push @
{ $borrower->{holds
}{hold
} }, $unblessed_hold;
493 if ( $cgi->param('show_loans') && $cgi->param('show_loans') eq "1" ) {
494 my $per_page = $cgi->param('loans_per_page');
495 my $page = $cgi->param('loans_page');
497 my $pending_checkouts = $patron->pending_checkouts;
499 if ($page || $per_page) {
502 $borrower->{total_loans
} = $pending_checkouts->count();
503 $pending_checkouts = $pending_checkouts->search(undef, {
510 while ( my $c = $pending_checkouts->next ) {
511 # FIXME We should only retrieve what is needed in the template
512 my $issue = $c->unblessed_all_relateds;
513 delete $issue->{'more_subfields_xml'};
514 push @checkouts, $issue
516 $borrower->{'loans'}->{'loan'} = \
@checkouts;
519 my $show_attributes = $cgi->param('show_attributes');
520 if ( $show_attributes && $show_attributes eq "1" ) {
521 # FIXME Regression expected here, we do not retrieve the same field as previously
522 # Waiting for answer on bug 14257 comment 15
523 $borrower->{'attributes'} = [
525 $_->type->opac_display
528 %{ $_->type->unblessed },
529 value
=> $_->attribute, # Backward compatibility
530 value_description
=> $_->description, # Awkward retro-compability...
533 } $patron->extended_attributes->search
537 # Add is expired information
538 $borrower->{'is_expired'} = $patron->is_expired ?
1 : 0;
543 =head2 GetPatronStatus
545 Returns a patron's status information.
549 - patron_id (Required)
554 sub GetPatronStatus
{
558 my $borrowernumber = $cgi->param('patron_id');
559 my $patron = Koha
::Patrons
->find( $borrowernumber );
560 return { code
=> 'PatronNotFound' } unless $patron;
564 type
=> $patron->categorycode,
566 expiry
=> $patron->dateexpiry,
572 Returns information about the services available on a particular item for
577 - patron_id (Required)
587 # Get the member, or return an error code if not found
588 my $borrowernumber = $cgi->param('patron_id');
589 my $patron = Koha
::Patrons
->find( $borrowernumber );
590 return { code
=> 'PatronNotFound' } unless $patron;
592 my $borrower = $patron->unblessed;
593 # Get the item, or return an error code if not found
594 my $itemnumber = $cgi->param('item_id');
595 my $item = Koha
::Items
->find($itemnumber);
596 return { code
=> 'RecordNotFound' } unless $item;
600 # Reserve level management
601 my $biblionumber = $item->biblionumber;
602 my $canbookbereserved = CanBookBeReserved
( $borrower, $biblionumber );
603 if ($canbookbereserved->{status
} eq 'OK') {
604 push @availablefor, 'title level hold';
605 my $canitembereserved = IsAvailableForItemLevelRequest
($item, $patron);
606 if ($canitembereserved) {
607 push @availablefor, 'item level hold';
611 # Reserve cancellation management
612 my $holds = $patron->holds;
614 while ( my $hold = $holds->next ) { # FIXME This could be improved
615 push @reserveditems, $hold->itemnumber;
617 if ( grep { $itemnumber eq $_ } @reserveditems ) {
618 push @availablefor, 'hold cancellation';
622 my @renewal = CanBookBeRenewed
( $borrowernumber, $itemnumber );
624 push @availablefor, 'loan renewal';
628 my $barcode = $item->barcode || '';
629 $barcode = barcodedecode
($barcode) if ( $barcode && C4
::Context
->preference('itemBarcodeInputFilter') );
631 my ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued
( $patron, $barcode );
633 # TODO push @availablefor, 'loan';
637 $out->{'AvailableFor'} = \
@availablefor;
644 Extends the due date for a borrower's existing issue.
648 - patron_id (Required)
652 - desired_due_date (Required)
653 the date the patron would like the item returned by
660 # Get borrower infos or return an error code
661 my $borrowernumber = $cgi->param('patron_id');
662 my $patron = Koha
::Patrons
->find( $borrowernumber );
663 return { code
=> 'PatronNotFound' } unless $patron;
665 # Get the item, or return an error code
666 my $itemnumber = $cgi->param('item_id');
667 my $item = Koha
::Items
->find($itemnumber);
668 return { code
=> 'RecordNotFound' } unless $item;
670 # Add renewal if possible
671 my @renewal = CanBookBeRenewed
( $borrowernumber, $itemnumber );
672 if ( $renewal[0] ) { AddRenewal
( $borrowernumber, $itemnumber ); }
674 my $issue = $item->checkout;
675 return unless $issue; # FIXME should be handled
679 $out->{'renewals'} = $issue->renewals;
680 $out->{date_due
} = dt_from_string
($issue->date_due)->strftime('%Y-%m-%d %H:%M');
681 $out->{'success'} = $renewal[0];
682 $out->{'error'} = $renewal[1];
689 Creates, for a borrower, a biblio-level hold reserve.
693 - patron_id (Required)
697 - request_location (Required)
698 IP address where the end user request is being placed
699 - pickup_location (Optional)
700 a branch code indicating the location to which to deliver the item for pickup
701 - start_date (Optional)
702 date after which hold request is no longer needed if the document has not been made available
703 - expiry_date (Optional)
704 date after which item returned to shelf if item is not picked up
711 # Get the borrower or return an error code
712 my $borrowernumber = $cgi->param('patron_id');
713 my $patron = Koha
::Patrons
->find( $borrowernumber );
714 return { code
=> 'PatronNotFound' } unless $patron;
716 # If borrower is restricted return an error code
717 return { code
=> 'PatronRestricted' } if $patron->is_debarred;
719 # Get the biblio record, or return an error code
720 my $biblionumber = $cgi->param('bib_id');
721 my $biblio = Koha
::Biblios
->find( $biblionumber );
722 return { code
=> 'RecordNotFound' } unless $biblio;
724 my @hostitems = get_hostitemnumbers_of
($biblionumber);
727 push(@itemnumbers, @hostitems);
730 my $items = Koha
::Items
->search({ -or => { biblionumber
=> $biblionumber, itemnumber
=> { in => \
@itemnumbers } } });
732 unless ( $items->count ) {
733 return { code
=> 'NoItems' };
736 my $title = $biblio ?
$biblio->title : '';
738 # Check if the biblio can be reserved
739 my $code = CanBookBeReserved
( $borrowernumber, $biblionumber )->{status
};
740 return { code
=> $code } unless ( $code eq 'OK' );
744 # Pickup branch management
745 if ( $cgi->param('pickup_location') ) {
746 $branch = $cgi->param('pickup_location');
747 return { code
=> 'LocationNotFound' } unless Koha
::Libraries
->find($branch);
748 } else { # if the request provide no branch, use the borrower's branch
749 $branch = $patron->branchcode;
752 my $destination = Koha
::Libraries
->find($branch);
753 return { code
=> 'libraryNotPickupLocation' } unless $destination->pickup_location;
754 return { code
=> 'cannotBeTransferred' } unless $biblio->can_be_transferred({ to
=> $destination });
757 if ( $cgi->param('start_date') ) {
758 $resdate = $cgi->param('start_date');
762 if ( $cgi->param('expiry_date') ) {
763 $expdate = $cgi->param('expiry_date');
767 # $branch, $borrowernumber, $biblionumber,
768 # $constraint, $bibitems, $priority, $resdate, $expdate, $notes,
769 # $title, $checkitem, $found
770 my $priority= C4
::Reserves
::CalculatePriority
( $biblionumber );
773 branchcode
=> $branch,
774 borrowernumber
=> $borrowernumber,
775 biblionumber
=> $biblionumber,
776 priority
=> $priority,
777 reservation_date
=> $resdate,
778 expiration_date
=> $expdate,
785 $out->{'title'} = $title;
786 my $library = Koha
::Libraries
->find( $branch );
787 $out->{'pickup_location'} = $library ?
$library->branchname : '';
789 # TODO $out->{'date_available'} = '';
796 Creates, for a borrower, an item-level hold request on a specific item of
797 a bibliographic record in Koha.
801 - patron_id (Required)
807 - pickup_location (Optional)
808 a branch code indicating the location to which to deliver the item for pickup
809 - start_date (Optional)
810 date after which hold request is no longer needed if the item has not been made available
811 - expiry_date (Optional)
812 date after which item returned to shelf if item is not picked up
819 # Get the borrower or return an error code
820 my $borrowernumber = $cgi->param('patron_id');
821 my $patron = Koha
::Patrons
->find( $borrowernumber );
822 return { code
=> 'PatronNotFound' } unless $patron;
824 # If borrower is restricted return an error code
825 return { code
=> 'PatronRestricted' } if $patron->is_debarred;
827 # Get the biblio or return an error code
828 my $biblionumber = $cgi->param('bib_id');
829 my $biblio = Koha
::Biblios
->find( $biblionumber );
830 return { code
=> 'RecordNotFound' } unless $biblio;
832 my $title = $biblio ?
$biblio->title : '';
834 # Get the item or return an error code
835 my $itemnumber = $cgi->param('item_id');
836 my $item = Koha
::Items
->find($itemnumber);
837 return { code
=> 'RecordNotFound' } unless $item;
839 # If the biblio does not match the item, return an error code
840 return { code
=> 'RecordNotFound' } if $item->biblionumber ne $biblio->biblionumber;
842 # Pickup branch management
844 if ( $cgi->param('pickup_location') ) {
845 $branch = $cgi->param('pickup_location');
846 return { code
=> 'LocationNotFound' } unless Koha
::Libraries
->find($branch);
847 } else { # if the request provide no branch, use the borrower's branch
848 $branch = $patron->branchcode;
851 # Check for item disponibility
852 my $canitembereserved = C4
::Reserves
::CanItemBeReserved
( $borrowernumber, $itemnumber, $branch )->{status
};
853 return { code
=> $canitembereserved } unless $canitembereserved eq 'OK';
856 if ( $cgi->param('start_date') ) {
857 $resdate = $cgi->param('start_date');
861 if ( $cgi->param('expiry_date') ) {
862 $expdate = $cgi->param('expiry_date');
866 my $priority = C4
::Reserves
::CalculatePriority
($biblionumber);
869 branchcode
=> $branch,
870 borrowernumber
=> $borrowernumber,
871 biblionumber
=> $biblionumber,
872 priority
=> $priority,
873 reservation_date
=> $resdate,
874 expiration_date
=> $expdate,
876 itemnumber
=> $itemnumber,
882 my $library = Koha
::Libraries
->find( $branch );
883 $out->{'pickup_location'} = $library ?
$library->branchname : '';
885 # TODO $out->{'date_available'} = '';
892 Cancels an active reserve request for the borrower.
896 - patron_id (Required)
906 # Get the borrower or return an error code
907 my $borrowernumber = $cgi->param('patron_id');
908 my $patron = Koha
::Patrons
->find( $borrowernumber );
909 return { code
=> 'PatronNotFound' } unless $patron;
911 # Get the reserve or return an error code
912 my $reserve_id = $cgi->param('item_id');
913 my $hold = Koha
::Holds
->find( $reserve_id );
914 return { code
=> 'RecordNotFound' } unless $hold;
915 return { code
=> 'RecordNotFound' } unless ($hold->borrowernumber == $borrowernumber);
919 return { code
=> 'Canceled' };
924 Returns, for an itemnumber, an array containing availability information.
926 my ($biblionumber, $status, $msg, $location) = _availability($id);
931 my ($itemnumber) = @_;
932 my $item = Koha
::Items
->find($itemnumber);
935 return ( undef, 'unknown', 'Error: could not retrieve availability for this ID', undef );
938 my $biblionumber = $item->biblioitemnumber;
939 my $library = Koha
::Libraries
->find( $item->holdingbranch );
940 my $location = $library ?
$library->branchname : '';
942 if ( $item->notforloan ) {
943 return ( $biblionumber, 'not available', 'Not for loan', $location );
944 } elsif ( $item->onloan ) {
945 return ( $biblionumber, 'not available', 'Checked out', $location );
946 } elsif ( $item->itemlost ) {
947 return ( $biblionumber, 'not available', 'Item lost', $location );
948 } elsif ( $item->withdrawn ) {
949 return ( $biblionumber, 'not available', 'Item withdrawn', $location );
950 } elsif ( $item->damaged ) {
951 return ( $biblionumber, 'not available', 'Item damaged', $location );
953 return ( $biblionumber, 'available', undef, $location );