X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=patroncards%2Fprint.pl;h=fdadfc9f364516eec4c890eff613e094060608ad;hb=285dd883564eaf96737b2be153bbe6d30e1b64f7;hp=feeb65eef1144739977531d7938ec8fc67adabd5;hpb=c165df96c0ace7064a01150dfdfffbcd10b64f5e;p=koha.git diff --git a/patroncards/print.pl b/patroncards/print.pl index feeb65eef1..fdadfc9f36 100755 --- a/patroncards/print.pl +++ b/patroncards/print.pl @@ -4,34 +4,34 @@ # # 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 CGI; +use CGI qw ( -utf8 ); use autouse 'Data::Dumper' => qw(Dumper); use C4::Auth qw(get_template_and_user); use C4::Output qw(output_html_with_http_headers); -use C4::Creators 1.000000; -use C4::Patroncards 1.000000; +use C4::Creators; +use C4::Patroncards; my $cgi = new CGI; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { - template_name => "patroncards/print.tmpl", + template_name => "patroncards/print.tt", query => $cgi, type => "intranet", authnotrequired => 0, @@ -41,12 +41,13 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( ); my $op = $cgi->param('op') || 'none'; -my @label_ids = $cgi->param('label_id') if $cgi->param('label_id'); # this will handle individual card printing; we use label_id to maintain consistency with the column names in the creator_batches table -my @batch_ids = $cgi->param('batch_id') if $cgi->param('batch_id'); +my @label_ids = $cgi->multi_param('label_id') if $cgi->param('label_id'); # this will handle individual card printing; we use label_id to maintain consistency with the column names in the creator_batches table +my @batch_ids = $cgi->multi_param('batch_id') if $cgi->param('batch_id'); +my $patronlist_id = $cgi->param('patronlist_id') || undef; my $layout_id = $cgi->param('layout_id') || undef; my $template_id = $cgi->param('template_id') || undef; my $start_card = $cgi->param('start_card') || 1; -my @borrower_numbers = $cgi->param('borrower_number') if $cgi->param('borrower_number'); +my @borrower_numbers = $cgi->multi_param('borrower_number') if $cgi->param('borrower_number'); my $output_format = $cgi->param('output_format') || 'pdf'; my $referer = $cgi->param('referer') || undef; @@ -104,6 +105,15 @@ if ($op eq 'export') { referer => $referer, ); } + elsif ($patronlist_id ) { + $template->param( + patronlist_id => $patronlist_id, + template_id => $template_id, + layout_id => $layout_id, + start_card => $start_card, + referer => $referer, + ); + } } elsif ($op eq 'none') { # setup select menus for selecting layout and template for this run... @@ -112,13 +122,14 @@ elsif ($op eq 'none') { @batch_ids = grep{$_ = {batch_id => $_}} @batch_ids; @label_ids = grep{$_ = {label_id => $_}} @label_ids; @borrower_numbers = grep{$_ = {borrower_number => $_}} @borrower_numbers; - $templates = get_all_templates(field_list => 'template_id, template_code', filter => 'creator = "Patroncards"'); - $layouts = get_all_layouts(field_list => 'layout_id, layout_name', filter => 'creator = "Patroncards"'); + $templates = get_all_templates( { fields => [qw( template_id template_code ) ], filters => { creator => "Patroncards" } }); + $layouts = get_all_layouts({ fields => [ qw( layout_id layout_name ) ], filters => { creator => "Patroncards" } }); $output_formats = get_output_formats(); $template->param( batch_ids => \@batch_ids, label_ids => \@label_ids, borrower_numbers => \@borrower_numbers, + patronlist_id => $patronlist_id, templates => $templates, layouts => $layouts, output_formats => $output_formats,