" value="" /> ">
+NAME="name" -->">
_tvalue">
@@ -359,11 +366,15 @@ NAME="name" -->">
-
+Total number of rows matching the (unlimited) query is .
+
-
-
-
@@ -399,10 +396,16 @@ NAME="name" -->">
Create Report From SQL
- Report Name: value="" />
- Notes:
- Type: " selected="selected">
- SQL:
+ Report Name: value="" />
+ Notes:
+ Type:
+
+ Tabular
+ Summary
+ Matrix
+
+
+ SQL:
@@ -442,10 +445,9 @@ Sub report:
-
@@ -457,30 +459,30 @@ Sub report:
Your report has been saved
The report you have created has now been saved. You can now
+
+
-
diff --git a/misc/cronjobs/runreport.pl b/misc/cronjobs/runreport.pl
index c0f67a298c..ebbaa6ef52 100755
--- a/misc/cronjobs/runreport.pl
+++ b/misc/cronjobs/runreport.pl
@@ -27,6 +27,7 @@ use Getopt::Long qw(:config auto_help auto_version);
use Pod::Usage;
use Mail::Sendmail;
use Text::CSV_XS;
+use CGI;
use vars qw($VERSION);
@@ -131,15 +132,22 @@ foreach my $report (@ARGV) {
}
$verbose and print "SQL: $sql\n\n";
# my $results = execute_query($sql, undef, 0, 99999, $format, $report);
- my ($results) = execute_query($sql, undef, 0, 20, , );
+ my ($sth) = execute_query($sql);
# execute_query(sql, , 0, 20, , )
- my $count = scalar(@$results);
+ my $count = scalar($sth->rows);
unless ($count) {
print "NO OUTPUT: 0 results from execute_query\n";
next;
}
$verbose and print "$count results from execute_query\n";
- my $message = "\n" . join("\n", map {$_->{row}} @$results) . "\n
\n";
+
+ my $cgi = CGI->new();
+ my @rows = ();
+ while (my $line = $sth->fetchrow_arrayref) {
+ foreach (@$line) { defined($_) or $_ = ''; } # catch undef values, replace w/ ''
+ push @rows, $cgi->TR( join('', $cgi->td($line)) ) . "\n";
+ }
+ my $message = $cgi->table(join "", @rows);
if ($email){
my %mail = (
@@ -152,4 +160,8 @@ foreach my $report (@ARGV) {
} else {
print $message;
}
+ # my @xmlarray = ... ;
+ # my $url = "/cgi-bin/koha/reports/guided_reports.pl?phase=retrieve%20results&id=$id";
+ # my $xml = XML::Dumper->new()->pl2xml( \@xmlarray );
+ # store_results($id,$xml);
}
diff --git a/reports/guided_reports.pl b/reports/guided_reports.pl
index 234ffb9b3b..037029ce62 100755
--- a/reports/guided_reports.pl
+++ b/reports/guided_reports.pl
@@ -20,6 +20,7 @@
use strict;
# use warnings; # FIXME
use CGI;
+use Text::CSV;
use C4::Reports::Guided;
use C4::Auth;
use C4::Output;
@@ -39,7 +40,6 @@ Script to control the guided report creation
=cut
my $input = new CGI;
-my $referer = $input->referer();
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
{
@@ -52,43 +52,32 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
}
);
+ my @errors = ();
my $phase = $input->param('phase');
-my $no_html = 0; # this will be set if we dont want to print out an html::template
if ( !$phase ) {
$template->param( 'start' => 1 );
-
# show welcome page
}
-
elsif ( $phase eq 'Build new' ) {
-
# build a new report
$template->param( 'build1' => 1 );
-
- # get report areas
- my $areas = get_report_areas();
- $template->param( 'areas' => $areas );
-
+ $template->param( 'areas' => get_report_areas() );
}
-
-elsif ( $phase eq 'Used saved' ) {
-
+elsif ( $phase eq 'Use saved' ) {
# use a saved report
# get list of reports and display them
$template->param( 'saved1' => 1 );
- my $reports = get_saved_reports();
- $template->param( 'savedreports' => $reports );
+ $template->param( 'savedreports' => get_saved_reports() );
}
elsif ( $phase eq 'Delete Saved') {
# delete a report from the saved reports list
- $no_html = 1;
my $id = $input->param('reports');
delete_report($id);
- print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Used%20saved");
-
+ print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved");
+ exit;
}
elsif ( $phase eq 'Show SQL'){
@@ -98,7 +87,7 @@ elsif ( $phase eq 'Show SQL'){
$template->param(
'sql' => $sql,
'showsql' => 1,
- );
+ );
}
elsif ($phase eq 'retrieve results') {
@@ -110,23 +99,17 @@ elsif ($phase eq 'retrieve results') {
'results' => $results,
'name' => $name,
'notes' => $notes,
- );
-
+ );
}
elsif ( $phase eq 'Report on this Area' ) {
# they have choosen a new report and the area to report on
- # get area
- my $area = $input->param('areas');
$template->param(
'build2' => 1,
- 'area' => $area
+ 'area' => $input->param('areas'),
+ 'types' => get_report_types(),
);
-
- # get report types
- my $types = get_report_types();
- $template->param( 'types' => $types );
}
elsif ( $phase eq 'Choose this type' ) {
@@ -139,11 +122,8 @@ elsif ( $phase eq 'Choose this type' ) {
'build3' => 1,
'area' => $area,
'type' => $type,
+ columns => get_columns($area,$input),
);
-
- # get columns
- my $columns = get_columns($area,$input);
- $template->param( 'columns' => $columns );
}
elsif ( $phase eq 'Choose these columns' ) {
@@ -154,16 +134,14 @@ elsif ( $phase eq 'Choose these columns' ) {
my $type = $input->param('type');
my @columns = $input->param('columns');
my $column = join( ',', @columns );
- my $definitions = get_from_dictionary($area);
$template->param(
'build4' => 1,
'area' => $area,
'type' => $type,
'column' => $column,
+ definitions => get_from_dictionary($area),
+ criteria => get_criteria($area,$input),
);
- my $criteria = get_criteria($area,$input);
- $template->param( 'criteria' => $criteria,
- 'definitions' => $definitions);
}
elsif ( $phase eq 'Choose these criteria' ) {
@@ -229,7 +207,7 @@ elsif ( $phase eq 'Choose These Operations' ) {
'column' => $column,
'criteriastring' => $criteria,
'totals' => $totals,
- 'definition' => $definition,
+ 'definition' => $definition,
);
# get columns
@@ -301,19 +279,14 @@ elsif ( $phase eq 'Save Report' ) {
my $name = $input->param('reportname');
my $type = $input->param('types');
my $notes = $input->param('notes');
- my @errors = ();
- my $error = {};
if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) {
- $error->{'sqlerr'} = $1;
- push @errors, $error;
+ push @errors, {sqlerr => $1};
}
elsif ($sql !~ /^(SELECT)/i) {
- $error->{'queryerr'} = 1;
- push @errors, $error;
+ push @errors, {queryerr => 1};
}
if (@errors) {
$template->param(
- 'save_successful' => 1,
'errors' => \@errors,
'sql' => $sql,
'reportname'=> $name,
@@ -329,44 +302,45 @@ elsif ( $phase eq 'Save Report' ) {
}
}
-# This condition is not used currently
-#elsif ( $phase eq 'Execute' ) {
-# # run the sql, and output results in a template
-# my $sql = $input->param('sql');
-# my $type = $input->param('type');
-# my ($results, $total, $errors) = execute_query($sql, $type);
-# $template->param(
-# 'results' => $results,
-# 'sql' => $sql,
-# 'execute' => 1,
-# );
-#}
-
elsif ($phase eq 'Run this report'){
# execute a saved report
- # FIXME The default limit should not be hardcoded...
- my $limit = 20;
- my $offset;
+ my $limit = 20; # page size. # TODO: move to DB or syspref?
+ my $offset = 0;
my $report = $input->param('reports');
# offset algorithm
if ($input->param('page')) {
- $offset = ($input->param('page') - 1) * 20;
- }
- else {
- $offset = 0;
+ $offset = ($input->param('page') - 1) * $limit;
}
my ($sql,$type,$name,$notes) = get_saved_report($report);
- my ($results, $total, $errors) = execute_query($sql, $type, $offset, $limit);
+ unless ($sql) {
+ push @errors, {no_sql_for_id=>$report};
+ }
+ my @rows = ();
+ my ($sth, $errors) = execute_query($sql, $offset, $limit);
+ my $total = select_2_select_count_value($sql) || 0;
+ unless ($sth) {
+ die "execute_query failed to return sth for report $report: $sql";
+ } else {
+ my $headref = $sth->{NAME} || [];
+ my @headers = map { +{ cell => $_ } } @$headref;
+ $template->param(header_row => \@headers);
+ while (my $row = $sth->fetchrow_arrayref()) {
+ my @cells = map { +{ cell => $_ } } @$row;
+ push @rows, { cells => \@cells };
+ }
+ }
+
my $totpages = int($total/$limit) + (($total % $limit) > 0 ? 1 : 0);
my $url = "/cgi-bin/koha/reports/guided_reports.pl?reports=$report&phase=Run%20this%20report";
$template->param(
- 'results' => $results,
- 'sql' => $sql,
- 'execute' => 1,
- 'name' => $name,
- 'notes' => $notes,
- 'pagination_bar' => pagination_bar($url, $totpages, $input->param('page'), "page"),
- 'errors' => $errors,
+ 'results' => \@rows,
+ 'sql' => $sql,
+ 'execute' => 1,
+ 'name' => $name,
+ 'notes' => $notes,
+ 'errors' => $errors,
+ 'pagination_bar' => pagination_bar($url, $totpages, $input->param('page')),
+ 'unlimited_total' => $total,
);
}
@@ -374,59 +348,62 @@ elsif ($phase eq 'Export'){
binmode STDOUT, ':utf8';
# export results to tab separated text
- my $sql = $input->param('sql');
- my $format = $input->param('format');
- my ($results, $total, $errors) = execute_query($sql,1,0,0,$format);
- if (!@$errors) {
- $no_html=1;
- print $input->header( -type => 'application/octet-stream',
- -attachment=>'reportresults.csv'
- );
- print $results;
+ my $sql = $input->param('sql'); # FIXME: use sql from saved report ID#, not new user-supplied SQL!
+ my $format = $input->param('format');
+ my ($sth, $q_errors) = execute_query($sql);
+ unless ($q_errors and @$q_errors) {
+ print $input->header( -type => 'application/octet-stream',
+ -attachment=>'reportresults.csv'
+ );
+ my $csv = Text::CSV->new({binary => 1});
+ $csv or die "Text::CSV->new({binary => 1}) FAILED: " . Text::CSV->error_diag();
+ if ($csv->combine(header_cell_values($sth))) {
+ print $csv->string(), "\n";
} else {
- $template->param(
- 'results' => $results,
- 'sql' => $sql,
- 'execute' => 1,
- 'name' => 'Error exporting report!',
- 'notes' => '',
- 'pagination_bar' => '',
- 'errors' => $errors,
- );
+ push @$q_errors, { combine => 'HEADER ROW: ' . $csv->error_diag() } ;
}
+ while (my $row = $sth->fetchrow_arrayref()) {
+ if ($csv->combine(@$row)) {
+ print $csv->string(), "\n";
+ } else {
+ push @$q_errors, { combine => $csv->error_diag() } ;
+ }
+ }
+ foreach my $err (@$q_errors, @errors) {
+ print "# ERROR: " . (map {$_ . ": " . $err->{$_}} keys %$err) . "\n";
+ } # here we print all the non-fatal errors at the end. Not super smooth, but better than nothing.
+ exit;
+ }
+ $template->param(
+ 'sql' => $sql,
+ 'execute' => 1,
+ 'name' => 'Error exporting report!',
+ 'notes' => '',
+ 'errors' => $q_errors,
+ );
}
elsif ($phase eq 'Create report from SQL') {
# allow the user to paste in sql
- if ($input->param('sql')) {
- $template->param(
- 'sql' => $input->param('sql'),
- 'reportname' => $input->param('reportname'),
- 'notes' => $input->param('notes'),
- );
- }
+ if ($input->param('sql')) {
+ $template->param(
+ 'sql' => $input->param('sql'),
+ 'reportname' => $input->param('reportname'),
+ 'notes' => $input->param('notes'),
+ );
+ }
$template->param('create' => 1);
- my $types = get_report_types();
- if (my $type = $input->param('type')) {
- for my $i ( 0 .. $#{@$types}) {
- @$types[$i]->{'selected'} = 1 if @$types[$i]->{'id'} eq $type;
- }
- }
- $template->param( 'types' => $types );
}
elsif ($phase eq 'Create Compound Report'){
- my $reports = get_saved_reports();
- $template->param( 'savedreports' => $reports,
+ $template->param( 'savedreports' => get_saved_reports(),
'compound' => 1,
);
}
elsif ($phase eq 'Save Compound'){
- my $master = $input->param('master');
+ my $master = $input->param('master');
my $subreport = $input->param('subreport');
-# my $compound_report = create_compound($master,$subreport);
-# my $results = run_compound($compound_report);
my ($mastertables,$subtables) = create_compound($master,$subreport);
$template->param( 'save_compound' => 1,
master=>$mastertables,
@@ -434,10 +411,23 @@ elsif ($phase eq 'Save Compound'){
);
}
-$template->param( 'referer' => $referer,
+# pass $sth, get back an array of names for the column headers
+sub header_cell_values ($) {
+ my $sth = shift or return ();
+ return @{$sth->{NAME}};
+}
+
+# pass $sth, get back a TMPL_LOOP-able set of names for the column headers
+sub header_cell_loop ($) {
+ my @headers = map { +{ cell => $_ } } header_cell_values (shift);
+ return \@headers;
+}
+
+foreach (1..6) {
+ $template->param('build' . $_) and $template->param(buildx => $_) and last;
+}
+$template->param( 'referer' => $input->referer(),
'DHTMLcalendar_dateformat' => C4::Dates->DHTMLcalendar(),
);
-if (!$no_html){
- output_html_with_http_headers $input, $cookie, $template->output;
-}
+output_html_with_http_headers $input, $cookie, $template->output;
diff --git a/tools/runreport.pl b/tools/runreport.pl
deleted file mode 100755
index 9801a4ae25..0000000000
--- a/tools/runreport.pl
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/perl
-
-# fix this line
-use C4::Reports::Guided;
-use C4::Context;
-
-use Mail::Sendmail;
-
-
-my ($report,$format,$email) = @ARGV;
-
-my ($sql,$type) = get_saved_report($report);
-my $results = execute_query($sql,$type,$format,$report);
-my $message;
-if ($format eq 'text'){
- $message="";
-}
-if ($format eq 'url'){
- $message="$results";
-}
-
-if ($email){
- my $to = $email;
- # should be koha admin email
- my $from = C4::Context->preference('KohaAdminEmailAddress');
- my $subject = 'Automated job run';
- my %mail = (
- To => $to,
- From => $from,
- Subject => $subject,
- Message => $message
- );
-
-
- if (not(sendmail %mail)) {
- warn "mail not sent";
- }
- }