From: Jonathan Druart Date: Fri, 16 Mar 2012 10:36:46 +0000 (+0100) Subject: Bug 5698: Followup: Add date picker option to SQL Runtime Parameters X-Git-Tag: v3.08.00~328 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=63ac6d763960f828b22473c23ac1c0fcaecedf82;p=srvgit Bug 5698: Followup: Add date picker option to SQL Runtime Parameters Move html Signed-off-by: Paul Poulain --- diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt index 137fdbfeba..03b007de30 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -486,7 +486,21 @@ canned reports and writing custom SQL reports.

Enter parameters for report [% name %]:

[% IF ( notes ) %]

[% notes %]

[% END %] [% FOREACH sql_param IN sql_params %] -

[% sql_param.entry %]: [% sql_param.input %]

+ [% IF sql_param.input == 'date' %] +

+ [% sql_param.entry %]: + Show Calendar + +

+ [% ELSE %] +

[% sql_param.entry %]: [% sql_param.input %]

+ [% END %] [% END %] diff --git a/reports/guided_reports.pl b/reports/guided_reports.pl index ce9370aaf8..5d53791810 100755 --- a/reports/guided_reports.pl +++ b/reports/guided_reports.pl @@ -421,18 +421,7 @@ elsif ($phase eq 'Run this report'){ my ($text,$authorised_value) = split /\|/,$split[$i*2+1]; my $input; if ($authorised_value eq "date") { - $input = qq( - Show Calendar - - ); + $input = 'date'; } elsif ($authorised_value) { my $dbh=C4::Context->dbh;