@@ -, +, @@ parameter in SQL report - Click the "Insert runtime parameter" menu button and select "Bibliographic framework." - You should be shown a modal dialog in which you can change the label on the framework input. - Click "Insert parameter." The SQL field should now contain the correct parameter, e.g. <> - Use the parameter to define an SQL query, e.g. "SELECT * FROM biblio WHERE frameworkcode = <> LIMIT 10" - Run the report. You should be asked to choose a framework. Confirm that the report runs correctly. --- .../prog/en/modules/reports/guided_reports_start.tt | 6 ++++++ 1 file changed, 6 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -1530,6 +1530,11 @@ $("#authorised_value_category").show(); $("#authorised_value").prop("required", true ).attr("required", "required"); break; + case "insertFramework": + modalTitle.text( _("Insert bibliographic framework parameter") ); + $("#paramLabel").val( _("Framework") ); + $("#param_category").val("biblio_framework"); + break; case "insertDate": modalTitle.text( _("Insert date parameter") ); $("#paramLabel").val( _("Date") ); @@ -2277,6 +2282,7 @@