Bug 11944: use CGI( -utf8 ) everywhere
[koha.git] / labels / label-manage.pl
1 #!/usr/bin/perl
2 #
3 # Copyright 2006 Katipo Communications.
4 # Parts Copyright 2009 Foundations Bible College.
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use strict;
22 use warnings;
23 use vars qw($debug);
24
25 use CGI qw ( -utf8 );
26 use Data::Dumper;
27
28 use C4::Auth qw(get_template_and_user);
29 use C4::Output qw(output_html_with_http_headers);
30 use C4::Creators;
31 use C4::Labels;
32
33 my $cgi = new CGI;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
35     {
36         template_name   => "labels/label-manage.tt",
37         query           => $cgi,
38         type            => "intranet",
39         authnotrequired => 0,
40         flagsrequired   => { catalogue => 1 },
41         debug           => 1,
42     }
43 );
44
45 my $db_rows = {};
46 my $display_columns = { layout =>   [  # db column       => {col label                  is link?
47                                         {layout_id       => {label => 'Layout ID',      link_field      => 0}},
48                                         {layout_name     => {label => 'Layout',         link_field      => 0}},
49                                         {barcode_type    => {label => 'Barcode Type',   link_field      => 0}},
50                                         {printing_type   => {label => 'Print Type',     link_field      => 0}},
51                                         {format_string   => {label => 'Fields to Print',link_field      => 0}},
52                                         {select          => {label => 'Select',         value           => 'layout_id'}},
53                                     ],
54                         template => [   {template_id     => {label => 'Template ID',    link_field      => 0}},
55                                         {template_code   => {label => 'Template Name',  link_field      => 0}},
56                                         {template_desc   => {label => 'Description',    link_field      => 0}},
57                                         {select          => {label => 'Select',         value           => 'template_id'}},
58                                     ],
59                         profile =>  [   {profile_id      => {label => 'Profile ID',     link_field      => 0}},
60                                         {printer_name    => {label => 'Printer Name',   link_field      => 0}},
61                                         {paper_bin       => {label => 'Paper Bin',      link_field      => 0}},
62                                         {_template_code  => {label => 'Template Name',  link_field      => 0}},     # this display column does not have a corrisponding db column in the profile table, hence the underscore
63                                         {select          => {label => 'Select',         value           => 'profile_id'}},
64                                     ],
65                         batch =>    [   {batch_id        => {label => 'Batch ID',       link_field      => 0}},
66                                         {_item_count     => {label => 'Item Count',     link_field      => 0}},
67                                         {select          => {label => 'Select',         value           => 'batch_id'}},
68                                     ],
69 };
70
71 my $label_element = $cgi->param('label_element') || 'template';   # default to template managment
72 my $op = $cgi->param('op') || 'none';
73 my $element_id = $cgi->param('element_id') || undef;
74 my $error = $cgi->param('error') || 0;
75
76 my $branch_code = ($label_element eq 'batch' ? C4::Context->userenv->{'branch'} : '');
77
78 if ($op eq 'delete') {
79     if          ($label_element eq 'layout')    {$error = C4::Labels::Layout::delete(layout_id => $element_id);}
80     elsif       ($label_element eq 'template')  {$error = C4::Labels::Template::delete(template_id => $element_id);}
81     elsif       ($label_element eq 'profile')   {$error = C4::Labels::Profile::delete(profile_id => $element_id);}
82     elsif       ($label_element eq 'batch')     {$error = C4::Labels::Batch::delete(batch_id => $element_id, branch_code => $branch_code);}
83     else                                        {}      # FIXME: Some error trapping code
84 }
85
86 if      ($label_element eq 'layout')    {$db_rows = get_all_layouts(table_name => 'creator_layouts', filter => 'creator=\'Labels\'');}
87 elsif   ($label_element eq 'template')  {$db_rows = get_all_templates(table_name => 'creator_templates', filter => 'creator=\'Labels\'');}
88 elsif   ($label_element eq 'profile')   {$db_rows = get_all_profiles(table_name => 'printers_profile', filter => 'creator=\'Labels\'');}
89 elsif   ($label_element eq 'batch')     {$db_rows = get_batch_summary(filter => "branch_code=\'$branch_code\' OR branch_code=\'NB\'", creator => 'Labels');}
90 else                                    {}      # FIXME: Some error trapping code
91
92 my $table = html_table($display_columns->{$label_element}, $db_rows);
93
94 $template->param(error => $error) if ($error) && ($error ne 0);
95 $template->param(print => 1) if ($label_element eq 'batch');
96 $template->param(
97                 op              => $op,
98                 element_id      => $element_id,
99                 table_loop      => $table,
100                 label_element   => $label_element,
101 );
102
103 output_html_with_http_headers $cgi, $cookie, $template->output;