X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=labels%2Flabel-print.pl;h=e8a42fa20628542011b8cb354cbae6538be70ae8;hb=ea61baa8d1c1c76c2a705aaaafdee66733e06854;hp=b65c7a6c55a7b4be75915b540e5d5f4d66bc31ec;hpb=4a4e4fd190942b93b98483de8222be3efe372e60;p=koha_ffzg diff --git a/labels/label-print.pl b/labels/label-print.pl index b65c7a6c55..e8a42fa206 100755 --- a/labels/label-print.pl +++ b/labels/label-print.pl @@ -4,23 +4,22 @@ # # 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 Data::Dumper; use C4::Auth qw(get_template_and_user); @@ -31,7 +30,7 @@ use C4::Labels::Batch; my $cgi = new CGI; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { - template_name => "labels/label-print.tmpl", + template_name => "labels/label-print.tt", query => $cgi, type => "intranet", authnotrequired => 0, @@ -42,14 +41,14 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( my $op = $cgi->param('op') || 'none'; my @label_ids; -@label_ids = $cgi->param('label_id') if $cgi->param('label_id'); # this will handle individual label printing +@label_ids = $cgi->multi_param('label_id') if $cgi->param('label_id'); # this will handle individual label printing my @batch_ids; -@batch_ids = $cgi->param('batch_id') if $cgi->param('batch_id'); +@batch_ids = $cgi->multi_param('batch_id') if $cgi->param('batch_id'); my $layout_id = $cgi->param('layout_id') || undef; my $template_id = $cgi->param('template_id') || undef; my $start_label = $cgi->param('start_label') || 1; my @item_numbers; -@item_numbers = $cgi->param('item_number') if $cgi->param('item_number'); +@item_numbers = $cgi->multi_param('item_number') if $cgi->param('item_number'); my $output_format = $cgi->param('output_format') || 'pdf'; my $referer = $cgi->param('referer') || undef; @@ -115,8 +114,8 @@ elsif ($op eq 'none') { @batch_ids = map{{batch_id => $_}} @batch_ids; @label_ids = map{{label_id => $_}} @label_ids; @item_numbers = map{{item_number => $_}} @item_numbers; - $templates = get_all_templates(field_list => 'template_id, template_code', filter => 'creator = "Labels"'); - $layouts = get_all_layouts(field_list => 'layout_id, layout_name', filter => 'creator = "Labels"'); + $templates = get_all_templates( { fields => [ qw( template_id template_code ) ], filters => { creator => "Labels" }, orderby => 'template_code' } ); + $layouts = get_all_layouts( { fields => [ qw( layout_id layout_name ) ], filters => { creator => "Labels" }, orderby => 'layout_name' } ); $output_formats = get_output_formats(); $template->param( batch_ids => \@batch_ids,