3 # Copyright 2007 Liblime ltd
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 use CGI
::Carp
qw(fatalsToBrowser warningsToBrowser);
24 use C4
::Reports
::Guided
;
29 Script to control the guided report creation
36 my $referer = $input->referer();
38 my $phase = $input->param('phase') || 'View Dictionary';
39 my $definition_name = $input->param('definition_name');
40 my $definition_description = $input->param('definition_description');
41 my $area = $input->param('area') || '';
42 my $no_html = 0; # this will be set if we dont want to print out an html::template
43 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
44 { template_name
=> "reports/dictionary.tt",
48 flagsrequired
=> { reports
=> '*' },
53 if ($phase eq 'View Dictionary'){
54 # view the dictionary we use to set up abstract variables such as all borrowers over fifty who live in a certain town
55 my $definitions = get_from_dictionary
($area);
57 'areas' => areas
( $area ),
58 'start_dictionary' => 1,
59 'definitions' => $definitions,
61 } elsif ( $phase eq 'Add New Definition' ) {
63 # display form allowing them to add a new definition
64 $template->param( 'new_dictionary' => 1, );
67 elsif ( $phase eq 'New Term step 2' ) {
72 'areas' => areas
( $area ),
73 'definition_name' => $definition_name,
74 'definition_description' => $definition_description,
78 elsif ( $phase eq 'New Term step 3' ) {
80 # Choosing the columns
81 my $columns = get_columns
( $area, $input );
85 'columns' => $columns,
86 'definition_name' => $definition_name,
87 'definition_description' => $definition_description,
91 elsif ( $phase eq 'New Term step 4' ) {
94 my @columns = $input->multi_param('columns');
95 my $columnstring = join( ',', @columns );
97 foreach my $column (@columns) {
99 $tmp_hash{'name'} = $column;
100 my $type = get_column_type
($column);
101 if ( $type eq 'distinct' ) {
102 my $values = get_distinct_values
($column);
103 $tmp_hash{'values'} = $values;
104 $tmp_hash{'distinct'} = 1;
107 if ( $type eq 'DATE' || $type eq 'DATETIME' ) {
108 $tmp_hash{'date'} = 1;
110 if ($type eq 'TEXT' || $type eq 'MEDIUMTEXT'){
111 $tmp_hash{'text'} = 1;
117 push @column_loop, \
%tmp_hash;
120 $template->param( 'step_4' => 1,
122 'definition_name' => $definition_name,
123 'definition_description' => $definition_description,
124 'columns' => \
@column_loop,
125 'columnstring' => $columnstring,
129 elsif ( $phase eq 'New Term step 5' ) {
130 # Confirmation screen
131 my $columnstring = $input->param('columnstring');
132 my @criteria = $input->multi_param('criteria_column');
136 foreach my $crit (@criteria) {
137 my $value = $input->param( $crit . "_value" );
140 $tmp_hash{'name'} = $crit;
141 $tmp_hash{'value'} = $value;
142 push @criteria_loop, \
%tmp_hash;
143 my $value_dt = eval { dt_from_string
( $value ) };
144 $value = output_pref
( { dt
=> $value_dt, dateonly
=> 1, dateformat
=> 'iso' } )
147 $query_criteria .= " AND $crit='$value'";
150 if ( my $date_type_value = $input->param( $crit . "_date_type_value" ) ) {
151 if ( $date_type_value eq 'range' ) {
152 if ( $value = $input->param( $crit . "_start_value" ) ) {
154 $tmp_hash{'name'} = "$crit Start";
155 $tmp_hash{'value'} = $value;
156 push @criteria_loop, \
%tmp_hash;
157 my $value_dt = eval { dt_from_string
( $value ) };
158 $value = output_pref
( { dt
=> $value_dt, dateonly
=> 1, dateformat
=> 'iso' } )
161 $query_criteria .= " AND $crit >= '$value'";
164 if ( $value = $input->param( $crit . "_end_value" ) ) {
166 $tmp_hash{'name'} = "$crit End";
167 $tmp_hash{'value'} = $value;
168 push @criteria_loop, \
%tmp_hash;
169 my $value_dt = eval { dt_from_string
( $value ) };
170 $value = output_pref
( { dt
=> $value_dt, dateonly
=> 1, dateformat
=> 'iso' } )
173 $query_criteria .= " AND $crit <= '$value'";
176 # else we want all dates
182 'definition_name' => $definition_name,
183 'definition_description' => $definition_description,
184 'query' => $query_criteria,
185 'columnstring' => $columnstring,
186 'criteria_loop' => \
@criteria_loop,
190 elsif ( $phase eq 'New Term step 6' ) {
192 my $area = $input->param('area');
193 my $sql = $input->param('sql');
194 save_dictionary
( $definition_name, $definition_description, $sql, $area );
196 print $input->redirect("/cgi-bin/koha/reports/dictionary.pl?phase=View%20Dictionary");
198 } elsif ( $phase eq 'Delete Definition' ) {
200 my $id = $input->param('id');
201 delete_definition
($id);
202 print $input->redirect("/cgi-bin/koha/reports/dictionary.pl?phase=View%20Dictionary");
205 $template->param( 'referer' => $referer );
209 output_html_with_http_headers
$input, $cookie, $template->output;
214 my $selected = shift;
216 my $areas = get_report_areas
();
218 foreach my $area ( @
$areas ) {
221 selected
=> ( $area eq $selected )