Lines 115-122
elsif ($op eq 'none') {
Link Here
|
115 |
@batch_ids = map{{batch_id => $_}} @batch_ids; |
115 |
@batch_ids = map{{batch_id => $_}} @batch_ids; |
116 |
@label_ids = map{{label_id => $_}} @label_ids; |
116 |
@label_ids = map{{label_id => $_}} @label_ids; |
117 |
@item_numbers = map{{item_number => $_}} @item_numbers; |
117 |
@item_numbers = map{{item_number => $_}} @item_numbers; |
118 |
$templates = get_all_templates(field_list => 'template_id, template_code', filter => 'creator = "Labels"'); |
118 |
$templates = get_all_templates(field_list => 'template_id, template_code', filter => 'creator = "Labels"', orderby => 'template_code' ); |
119 |
$layouts = get_all_layouts(field_list => 'layout_id, layout_name', filter => 'creator = "Labels"'); |
119 |
$layouts = get_all_layouts(field_list => 'layout_id, layout_name', filter => 'creator = "Labels"', orderby => 'layout_name' ); |
120 |
$output_formats = get_output_formats(); |
120 |
$output_formats = get_output_formats(); |
121 |
$template->param( |
121 |
$template->param( |
122 |
batch_ids => \@batch_ids, |
122 |
batch_ids => \@batch_ids, |
123 |
- |
|
|