From: miker Date: Mon, 15 Nov 2010 15:17:13 +0000 (+0000) Subject: Reverting and extending r18472 to correct implementation thinko X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=53df252702fc9b61b595a0e87f6b1af574fd8a15;p=working%2FEvergreen.git Reverting and extending r18472 to correct implementation thinko git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6_1@18737 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/reporter/clark-kent.pl b/Open-ILS/src/reporter/clark-kent.pl index cc034ad436..1de4c4d9b5 100755 --- a/Open-ILS/src/reporter/clark-kent.pl +++ b/Open-ILS/src/reporter/clark-kent.pl @@ -477,10 +477,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 '';