X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=basket%2Fdownloadcart.pl;h=46534493d167e1067ca27ae71dbc6485afaeaeba;hb=86a0a7d80b71908582dfc40c981734c5828112fc;hp=392a3e4ef8bca76d03d5a04698785784fbb66de0;hpb=3195d20440eef3f3836a351a87ab50d7087534ec;p=srvgit diff --git a/basket/downloadcart.pl b/basket/downloadcart.pl index 392a3e4ef8..46534493d1 100755 --- a/basket/downloadcart.pl +++ b/basket/downloadcart.pl @@ -4,43 +4,43 @@ # # 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 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 3 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. +# 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. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; -use CGI; +use CGI qw ( -utf8 ); use Encode qw(encode); use C4::Auth; use C4::Biblio; use C4::Items; use C4::Output; -use C4::VirtualShelves; use C4::Record; use C4::Ris; -use C4::Csv; + +use Koha::CsvProfiles; + use utf8; my $query = new CGI; my ( $template, $borrowernumber, $cookie ) = get_template_and_user ( { - template_name => "basket/downloadcart.tmpl", + template_name => "basket/downloadcart.tt", query => $query, type => "intranet", authnotrequired => 0, - flagsrequired => { borrow => 1 }, + flagsrequired => { catalogue => 1 }, } ); @@ -65,7 +65,10 @@ if ($bib_list && $format) { foreach my $biblio (@bibs) { - my $record = GetMarcBiblio($biblio, 1); + my $record = GetMarcBiblio({ + biblionumber => $biblio, + embed_items => 1 }); + next unless $record; if ($format eq 'iso2709') { $output .= $record->as_usmarc(); @@ -89,7 +92,7 @@ if ($bib_list && $format) { print $output; } else { - $template->param(csv_profiles => GetCsvProfilesLoop()); + $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc', used_for => 'export_records' }) ]); $template->param(bib_list => $bib_list); output_html_with_http_headers $query, $cookie, $template->output; }