e20270fec4
Signed-off-by: Paola Rossi <paola.rossi@cineca.it> Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Signed-off-by: Dobrica Pavlinusic <dpavlin@rot13.org> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
73 lines
2.2 KiB
Perl
Executable file
73 lines
2.2 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright BibLibre 2012
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 2 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with Koha; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
use Modern::Perl;
|
|
use CGI qw ( -utf8 );
|
|
use JSON;
|
|
|
|
use C4::Biblio;
|
|
use C4::Branch;
|
|
use C4::Items;
|
|
use C4::Koha;
|
|
use C4::Output;
|
|
|
|
my $cgi = new CGI;
|
|
my $item = {};
|
|
my $itemnumber = $cgi->param('itemnumber');
|
|
|
|
if($itemnumber) {
|
|
my $acq_fw = GetMarcStructure(1, 'ACQ');
|
|
my $fw = ($acq_fw) ? 'ACQ' : '';
|
|
$item = GetItem($itemnumber);
|
|
|
|
if($item->{homebranch}) {
|
|
$item->{homebranchname} = GetBranchName($item->{homebranch});
|
|
}
|
|
|
|
if($item->{holdingbranch}) {
|
|
$item->{holdingbranchname} = GetBranchName($item->{holdingbranch});
|
|
}
|
|
|
|
if(my $code = GetAuthValCode("items.notforloan", $fw)) {
|
|
$item->{notforloan} = GetKohaAuthorisedValueLib($code, $item->{notforloan});
|
|
}
|
|
|
|
if(my $code = GetAuthValCode("items.restricted", $fw)) {
|
|
$item->{restricted} = GetKohaAuthorisedValueLib($code, $item->{restricted});
|
|
}
|
|
|
|
if(my $code = GetAuthValCode("items.location", $fw)) {
|
|
$item->{location} = GetKohaAuthorisedValueLib($code, $item->{location});
|
|
}
|
|
|
|
if(my $code = GetAuthValCode("items.ccode", $fw)) {
|
|
$item->{collection} = GetKohaAuthorisedValueLib($code, $item->{ccode});
|
|
}
|
|
|
|
if(my $code = GetAuthValCode("items.materials", $fw)) {
|
|
$item->{materials} = GetKohaAuthorisedValueLib($code, $item->{materials});
|
|
}
|
|
|
|
my $itemtype = getitemtypeinfo($item->{itype});
|
|
$item->{itemtype} = $itemtype->{description};
|
|
}
|
|
|
|
my $json_text = to_json( $item, { utf8 => 1 } );
|
|
|
|
output_with_http_headers $cgi, undef, $json_text, 'json';
|