Bug 34587: Usage statistics table column data
[koha.git] / admin / additional-fields.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2013 BibLibre
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 use Modern::Perl;
20 use CGI;
21 use C4::Auth qw( get_template_and_user );
22 use C4::Output qw( output_html_with_http_headers );
23 use Koha::AdditionalFields;
24
25 my $input = CGI->new;
26
27 my %flagsrequired;
28 $flagsrequired{parameters} = 'manage_additional_fields';
29
30 my $tablename = $input->param('tablename');
31 my $op = $input->param('op') // ( $tablename ? 'list' : 'list_tables' );
32
33 if( $op ne 'list_tables' ){
34     $flagsrequired{acquisition} = 'order_manage' if $tablename eq 'aqbasket';
35     $flagsrequired{serials} = 'edit_subscription' if $tablename eq 'subscription';
36 }
37
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
39     {
40         template_name   => "admin/additional-fields.tt",
41         query           => $input,
42         type            => "intranet",
43         flagsrequired   => \%flagsrequired,
44     }
45 );
46
47 my $field_id = $input->param('field_id');
48 my @messages;
49
50 if ( $op eq 'add' ) {
51     my $name = $input->param('name') // q{};
52     my $authorised_value_category = $input->param('authorised_value_category') // q{};
53     my $marcfield = $input->param('marcfield') // q{};
54     my $marcfield_mode = $input->param('marcfield_mode') // 'get';
55     my $searchable = $input->param('searchable') ? 1 : 0;
56     if ( $field_id and $name ) {
57         my $updated = 0;
58         eval {
59             my $af = Koha::AdditionalFields->find($field_id);
60             $af->set({
61                 name => $name,
62                 authorised_value_category => $authorised_value_category,
63                 marcfield => $marcfield,
64                 marcfield_mode => $marcfield_mode,
65                 searchable => $searchable,
66             });
67             $updated = $af->store ? 1 : 0;
68         };
69         push @messages, {
70             code => 'update',
71             number => $updated,
72         };
73     } elsif ( $name ) {
74         my $inserted = 0;
75         eval {
76             my $af = Koha::AdditionalField->new({
77                 tablename => $tablename,
78                 name => $name,
79                 authorised_value_category => $authorised_value_category,
80                 marcfield => $marcfield,
81                 marcfield_mode => $marcfield_mode,
82                 searchable => $searchable,
83             });
84             $inserted = $af->store ? 1 : 0;
85         };
86         push @messages, {
87             code => 'insert',
88             number => $inserted,
89         };
90     } else {
91         push @messages, {
92             code => 'insert',
93             number => 0,
94         };
95     }
96     $op = 'list';
97 }
98
99 if ( $op eq 'delete' ) {
100     my $deleted = 0;
101     eval {
102         my $af = Koha::AdditionalFields->find($field_id);
103         $deleted = $af->delete;
104     };
105     push @messages, {
106         code => 'delete',
107         number => $deleted,
108     };
109     $op = 'list';
110 }
111
112 if ( $op eq 'add_form' ) {
113     my $field;
114     if ( $field_id ) {
115         $field = Koha::AdditionalFields->find($field_id);
116     }
117
118     $tablename = $field->tablename if $field;
119
120     $template->param(
121         field => $field,
122     );
123 }
124
125 if ( $op eq 'list' ) {
126     my $fields = Koha::AdditionalFields->search( { tablename => $tablename } );
127     $template->param( fields => $fields );
128 }
129
130 $template->param(
131     op => $op,
132     tablename => $tablename,
133     messages => \@messages,
134 );
135
136 output_html_with_http_headers $input, $cookie, $template->output;