X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=labels%2Flabel-print.pl;h=dd895fbbbc63981c8e973bfc99b0fcd1a7bd8e83;hb=6110375307845778f74d6e5a214d63ab69cc5330;hp=3947163ecac038df40d957df2cb9b33345345d7b;hpb=c0234dd9b9649063acf2617fecf5c6efda38a532;p=koha.git diff --git a/labels/label-print.pl b/labels/label-print.pl index 3947163eca..dd895fbbbc 100755 --- a/labels/label-print.pl +++ b/labels/label-print.pl @@ -25,8 +25,8 @@ use Data::Dumper; use C4::Auth qw(get_template_and_user); use C4::Output qw(output_html_with_http_headers); -use C4::Creators::Lib 1.000000 qw(get_all_templates get_all_layouts get_output_formats); -use C4::Labels::Batch 1.000000; +use C4::Creators::Lib qw(get_all_templates get_all_layouts get_output_formats); +use C4::Labels::Batch; my $cgi = new CGI; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( @@ -115,8 +115,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(field_list => 'template_id, template_code', filter => 'creator = "Labels"', orderby => 'template_code' ); + $layouts = get_all_layouts(field_list => 'layout_id, layout_name', filter => 'creator = "Labels"', orderby => 'layout_name' ); $output_formats = get_output_formats(); $template->param( batch_ids => \@batch_ids,