From aef213616fcaf9c05e45d66a7ed04e06704f6b69 Mon Sep 17 00:00:00 2001 From: miker Date: Mon, 15 Nov 2010 15:15:15 +0000 Subject: [PATCH] Reverting and extending r18472 to correct implementation thinko git-svn-id: svn://svn.open-ils.org/ILS/trunk@18734 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/reporter/clark-kent.pl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/reporter/clark-kent.pl b/Open-ILS/src/reporter/clark-kent.pl index cf2d8628fd..6f7f95e10d 100755 --- a/Open-ILS/src/reporter/clark-kent.pl +++ b/Open-ILS/src/reporter/clark-kent.pl @@ -478,10 +478,12 @@ sub build_html { { no warnings; print $debug '

Generated SQL

' . $r->{resultset}->toSQL() . "
Back to output index
"; - print $debug '

Template

' . Dumper( OpenSRF::Utils::JSON->JSON2perl( $r->{report}->{template} ) ) . "
Back to output index
"; - print $debug '

Report Parameter

' . Dumper( OpenSRF::Utils::JSON->JSON2perl( $r->{report} ) ) . "
Back to output index
"; + print $debug '

Template

' . Dumper( $r->{report}->{template} ) . "
Back to output index
"; + print $debug '

Template Data

' . Dumper( OpenSRF::Utils::JSON->JSON2perl( $r->{report}->{template}->{data} ) ) . "
Back to output index
"; + print $debug '

Report Parameter

' . Dumper( $r->{report} ) . "
Back to output index
"; + print $debug '

Report Parameter Data

' . Dumper( OpenSRF::Utils::JSON->JSON2perl( $r->{report}->{data} ) ) . "
Back to output index
"; print $debug '

Report Run Time

' . $r->{resultset}->relative_time . "
Back to output index
"; - print $debug '

OpenILS::Reporter::SQLBuilder::ResultSet Object

' . Dumper( $r->{resultset} ) . "
Back to output index"; + print $debug '

OpenILS::Reporter::SQLBuilder::ResultSet Object

' . Dumper( $r->{resultset} ) . "
Back to output index"; } print $debug ''; -- 2.11.0