3 # Copyright 2011 Chris Cormack <chris@bigballofwax.co.nz>
5 # This file is part of Koha.
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 2 of the License, or (at your option) any later
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.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
25 use C4
::Reports
::Guided
;
32 my $query = CGI
->new();
33 my $report_id = $query->param('id');
34 my $report_name = $query->param('name');
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
38 template_name
=> "intranet-main.tmpl",
42 flagsrequired
=> { catalogue
=> 1, },
46 my $cache_active = Koha
::Cache
->is_cache_active;
47 my ($cache_key, $cache, $json_text);
49 $cache_key = "intranet:report:".($report_name ?
"name:$report_name" : "id:$report_id");
50 $cache = Koha
::Cache
->new();
51 $json_text = $cache->get_from_cache($cache_key);
55 my $report_rec = get_saved_report
($report_name ?
{ 'name' => $report_name } : { 'id' => $report_id });
57 my $limit = C4
::Context
->preference("SvcMaxReportRows") || 10;
58 my ( $sth, $errors ) = execute_query
( $report_rec->{savedsql
}, $offset, $limit );
60 my $lines = $sth->fetchall_arrayref;
61 $json_text = to_json
($lines);
64 $cache->set_in_cache( $cache_key, $json_text, $report_rec->{cache_expiry
} );
68 $json_text = to_json
($errors);