Bug 5697: Automatic linking in guided reports
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / guided_reports_start.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE AuthorisedValues %]
4 [% USE KohaDates %]
5 [% USE Koha %]
6 [% USE TablesSettings %]
7 [% USE JSON.Escape %]
8 [% SET footerjs = 1 %]
9
10 [%- BLOCK area_name -%]
11     [%- SWITCH area -%]
12         [%- CASE 'CIRC' -%]Circulation
13         [%- CASE 'CAT'  -%]Catalog
14         [%- CASE 'PAT'  -%]Patrons
15         [%- CASE 'ACQ'  -%]Acquisitions
16         [%- CASE 'ACC'  -%]Accounts
17         [%- CASE 'SER'  -%]Serials
18     [%- END -%]
19 [%- END -%]
20
21 [% INCLUDE 'doc-head-open.inc' %]
22
23 <title>
24     [%- IF ( saved1 ) -%]
25         Saved reports &rsaquo; [%- ELSIF ( create ) -%]
26         Create from SQL &rsaquo; [%- ELSIF ( showsql ) -%]
27         SQL view &rsaquo; Saved reports &rsaquo; [%- ELSIF ( execute ) -%]
28         Report [% name | html %] ([% id | html %]) &rsaquo; Saved reports &rsaquo; [%- ELSIF ( editsql ) -%]
29         Edit report [% reportname | html %] ([% id | html %]) &rsaquo; Saved reports &rsaquo; [%- END -%]
30
31     [%- IF ( build1 ) -%]
32         Build a report, step 1 of 6: Choose a module &rsaquo; [%- ELSIF ( build2 ) -%]
33         Build a report, step 2 of 6: Pick a report type &rsaquo; [%- ELSIF ( build3 ) -%]
34         Build a report, step 3 of 6: Select columns for display &rsaquo; [%- ELSIF ( build4 ) -%]
35         Build a report, step 4 of 6: Select criteria to limit on &rsaquo; [%- ELSIF ( build5 ) -%]
36         Build a report, step 5 of 6: Pick which columns to total &rsaquo; [%- ELSIF ( build6 ) -%]
37         Build a report, step 6 of 6: Select how you want the report ordered &rsaquo; [%- END -%]
38     Guided reports wizard &rsaquo; Reports &rsaquo; Koha
39 </title>
40
41 [% INCLUDE 'doc-head-close.inc' %]
42 [% Asset.css("lib/codemirror/codemirror.min.css") | $raw %]
43 <style>
44     .CodeMirror {
45         resize:  vertical;
46     }
47     .cm-sqlParams {
48         color: #11917B;
49     }
50     .cm-columnPlaceholder {
51         color: #BF2D5D;
52     }
53     #mana_search_errortext {
54         font-family: monospace; font-weight: bold;
55     }
56     .data-plain {
57         display: none;
58     }
59 </style>
60 [% Asset.css("css/reports.css") | $raw %]
61 [% Asset.css("lib/d3c3/c3.min.css") | $raw %]
62 </head>
63
64 <body id="rep_guided_reports_start" class="rep">
65 [% INCLUDE 'header.inc' %]
66 [% INCLUDE 'circ-search.inc' %]
67
68 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
69     <ol>
70         <li>
71             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
72         </li>
73         <li>
74             <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>
75         </li>
76         <li>
77             <a href="/cgi-bin/koha/reports/guided_reports.pl">Guided reports wizard</a>
78         </li>
79
80         [% IF ( saved1 ) %]
81             <li>
82                 <a href="#" aria-current="page">
83                     Saved reports
84                 </a>
85             </li>
86         [% ELSIF ( create ) %]
87             <li>
88                 <a href="#" aria-current="page">
89                     Create from SQL
90                 </a>
91             </li>
92         [% ELSIF ( showsql ) %]
93             <li>
94                 <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a>
95             </li>
96             <li>
97                 <a href="#" aria-current="page">
98                     [% reportname | html %] ([% id | html %])
99                 </a>
100             </li>
101         [% ELSIF ( editsql ) %]
102             <li>
103                 <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a>
104             </li>
105             <li>
106                 <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | uri %]&amp;phase=Show%20SQL">[% reportname | html %] ([% id | html %])</a>
107             </li>
108             <li>
109                 <a href="#" aria-current="page">
110                     Edit
111                 </a>
112             </li>
113         [% ELSIF ( execute ) %]
114             <li>
115                 <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Saved reports</a>
116             </li>
117             <li>
118                 <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | uri %]&amp;phase=Show%20SQL">[% name | html %] ([% id | html %])</a>
119             </li>
120             <li>
121                 <a href="#" aria-current="page">
122                     Run
123                 </a>
124             </li>
125         [% ELSIF ( build1 || build2 || build3 || build4 || build5 || build6 ) %]
126             <li>
127                 <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Build%20new">Build a report</a>
128             </li>
129             <li>
130                 <a href="#" aria-current="page">
131                     [% IF ( build1 ) %]
132                         Step 1 of 6: Choose a module
133                     [% ELSIF ( build2 ) %]
134                         Step 2 of 6: Pick a report type
135                     [% ELSIF ( build3 ) %]
136                         Step 3 of 6: Select columns for display
137                     [% ELSIF ( build4 ) %]
138                         Step 4 of 6: Select criteria to limit on
139                     [% ELSIF ( build5 ) %]
140                         Step 5 of 6: Pick which columns to total
141                     [% ELSIF ( build6 ) %]
142                         Step 6 of 6: Select how you want the report ordered
143                     [% END %]
144                 </a>
145         [% END %]
146     </ol>
147 </nav> <!-- /#breadcrumbs -->
148
149 <div id="update_sql" class="modal" tabindex="-1" role="dialog" aria-labelledby="update_sql_label" aria-hidden="true">
150     <div class="modal-dialog">
151         <div class="modal-content">
152             <div class="modal-header">
153                 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
154                 <h3 id="update_sql_label">Update SQL</h3>
155             </div>
156             <div class="modal-body">
157                 <div id="loading"> <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading </div>
158             </div>
159             <div class="modal-footer">
160                 <a href="#" class="btn btn-default" id="update_sql_button" role="button" data-toggle="modal">Update</a>
161                 <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
162             </div>
163         </div> <!-- /.modal-content -->
164     </div> <!-- /.modal-dialog -->
165 </div> <!-- #update_sql -->
166
167 <div class="main container-fluid">
168     <div class="row">
169         <div class="col-sm-10 col-sm-push-2">
170             <main>
171
172                 [% INCLUDE "reports-toolbar.inc" %]
173
174                 [% IF ( start ) %]
175                     <h2>Guided reports</h2>
176                     <p>Use the guided reports engine to create non standard reports. This feature aims to provide some middle ground between the built in canned reports and writing custom SQL reports.</p>
177
178                     <h3>Build and run reports</h3>
179
180                     [% IF ( CAN_user_reports_create_reports ) %]
181                         <form action="/cgi-bin/koha/reports/guided_reports.pl">
182                             <input type="hidden" name="phase" value="Build new" />
183                             <input type="submit" name="submit" value="Build new"/>
184                         </form>
185                     [% END %]
186
187                     [% IF ( CAN_user_reports_execute_reports ) %]
188                         <form action="/cgi-bin/koha/reports/guided_reports.pl">
189                             <input type="hidden" name="phase" value="Use saved"/>
190                             <input type="submit" name="submit" value="Use saved"/>
191                         </form>
192                     [% END %]
193
194                     [% IF ( CAN_user_reports_create_reports ) %]
195                         <form action="/cgi-bin/koha/reports/guided_reports.pl">
196                             <input type="hidden" name="phase" value="Create report from SQL"/>
197                             <input type="submit" name="submit" value="Create report from SQL"/>
198                         </form>
199                     [% END %]
200
201                     <h3>Reports Dictionary</h3>
202                     <p>Use the reports dictionary to define custom criteria to use in your reports</p>
203                     <form action="/cgi-bin/koha/reports/dictionary.pl">
204                         <input type="hidden" name="phase" value="View Dictionary"/>
205                         <input type="submit" name="submit" value="View dictionary"/>
206                     </form>
207                 [% END # /IF (start) %]
208
209                 [% IF report_converted %]
210                     <div class="dialog message">
211                         The report "[% report_converted | html %]" has been converted.
212                     </div>
213                 [% END %]
214
215                 [% IF report_converted %]
216                     <div class="dialog message">
217                         The report "[% report_converted | html %]" has been converted.
218                     </div>
219                 [% END %]
220
221                 [% IF ( saved1 ) %]
222                     [% IF ( savedreports ) %]
223                         <h1>Saved reports</h1>
224
225                         [% IF ( filters.date || filters.author || filters.keyword ) %]
226                             <p>Filtered by:
227                                 <span class="filter">
228                                     [% IF ( filters.date ) %]
229                                         <span class="filter_date"><strong>Date:</strong> [% filters.date | html %]</span>
230                                     [% END %]
231                                     [% IF ( filters.author ) %]
232                                         <span class="filter_author"><strong>Author:</strong> [% filters.author | html %]</span>
233                                     [% END %]
234                                     [% IF ( filters.keyword ) %]
235                                         <span class="filter_keyword"><strong>Keyword:</strong> [% filters.keyword | html %]</span>
236                                     [% END %]
237                                     <a class="clear_filter" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved&clear_filters=1"><i class="fa fa-remove"></i> Clear</a>
238                                 </span>
239                             </p>
240                         [% END %]
241
242                         <div id="tabs" class="toptabs">
243                             <ul>
244                                 <li><a href="#reports">All</a></li>
245                                 [% FOREACH group IN groups_with_subgroups %]
246                                     <li><a id="[% group.id | html %]" href="#reports">[% group.name | html %]</a></li>
247                                 [% END %]
248                             </ul>
249                             <div id="reports">
250                                 <div id="subgroup_filter_block">
251                                     <label for="subgroup_filter">Subgroup:</label>
252                                     <select id="subgroup_filter">
253                                         <option value="">All</option>
254                                     </select>
255                                 </div>
256
257                                 [% IF (Koha.Preference('Mana') == 1) %]
258                                     [% IF manamsg %]
259                                         <div id="mana_search_message" class="dialog message">
260                                             <p> [% manamsg | html %] </p>
261                                         </div>
262                                     [% END %]
263                                 [% END %]
264
265                                 <form action="/cgi-bin/koha/reports/guided_reports.pl" id="reports_form" method="post">
266                                     <input type="hidden" name="phase" value="Delete Multiple" />
267                                     <table id="table_reports">
268                                         <thead>
269                                             <tr>
270                                                 <th class="NoSort">&nbsp;</th>
271                                                 <th>ID</th>
272                                                 <th>Report name</th>
273                                                 <th>Type</th>
274                                                 <th>Group</th>
275                                                 <th>Subgroup</th>
276                                                 <th>Notes</th>
277                                                 <th>Author</th>
278                                                 <th>Creation date</th>
279                                                 <th>Last edit</th>
280                                                 <th>Last run</th>
281                                                 <th class="report_public">Public</th>
282                                                 <th class="report_json_url">JSON URL</th>
283                                                 [% IF (usecache) %]
284                                                     <th>Cache expiry (seconds)</th>
285                                                 [% ELSE %]
286                                                     <th class="NoVisible">Cache expiry (seconds)</th>
287                                                 [% END %]
288                                                 <th>Saved results</th>
289                                                 [% IF has_obsolete_reports %]
290                                                     <th>Update</th>
291                                                 [% ELSE %]
292                                                     <th class="NoVisible">Update</th>
293                                                 [% END %]
294                                                 <th class="NoSort noExport">Actions</th>
295                                             </tr>
296                                         </thead>
297                                         <tbody>
298                                             [% FOREACH savedreport IN savedreports %]
299                                                 [% UNLESS ( loop.odd ) %]<tr class="odd">[% ELSE %]<tr>[% END %]
300                                                     <td class="report_checkbox">
301                                                         [% IF ( CAN_user_reports_delete_reports ) %] <!-- not break CSS -->
302                                                             <input type="checkbox" name="ids" id="ids[% savedreport.id | html %]" value="[% savedreport.id | html %]" />
303                                                         [% END %]
304                                                         <input type="hidden" class="report_sql" value="[% savedreport.savedsql |html %]">
305                                                     </td>
306                                                     <td class="report_id">
307                                                         <label for="ids[% savedreport.id | html %]">[% savedreport.id | html %]</label>
308                                                     </td>
309                                                     <td class="report_name">
310                                                         [% IF ( savedreport.report_name ) %]
311                                                             [% savedreport.report_name | html %]
312                                                         [% ELSE %]
313                                                             [ no name ]
314                                                         [% END %]
315                                                     </td>
316                                                     <td class="report_type">
317                                                         [% savedreport.type | html %]
318                                                     </td>
319                                                     <td class="report_group">
320                                                         [% savedreport.groupname | html %]
321                                                     </td>
322                                                     <td>
323                                                         [% savedreport.subgroupname | html %]
324                                                     </td>
325                                                     <td class="report_notes">
326                                                         [% savedreport.notes | html %]
327                                                     </td>
328                                                     <td>
329                                                         [% savedreport.borrowersurname | html %]
330                                                         [% IF ( savedreport.borrowerfirstname ) %]
331                                                             , [% savedreport.borrowerfirstname | html %]
332                                                         [% END %]
333                                                         ([% savedreport.borrowernumber | html %])
334                                                     </td>
335                                                     <td data-order="[% savedreport.date_created | html %]">
336                                                         [% savedreport.date_created | $KohaDates %]
337                                                     </td>
338                                                     <td data-order="[% savedreport.last_modified | html %]">
339                                                         [% savedreport.last_modified | $KohaDates  with_hours => 1 %]
340                                                     </td>
341                                                     <td data-order="[% savedreport.last_run | html %]">
342                                                         [% savedreport.last_run | $KohaDates  with_hours => 1 %]
343                                                     </td>
344                                                     <td class="report_public">
345                                                         [% IF (savedreport.public) %]
346                                                             Yes
347                                                         [% ELSE %]
348                                                             No
349                                                         [% END %]
350                                                     </td>
351                                                     <td class="report_json_url">
352                                                         [% IF (savedreport.public) %]
353                                                             <a href="[% OPACBaseURL | url %]/cgi-bin/koha/svc/report?id=[% savedreport.id | uri %]">[% OPACBaseURL | html %]/cgi-bin/koha/svc/report?id=[% savedreport.id | html %]</a>
354                                                         [% ELSE %]
355                                                             <a href="/cgi-bin/koha/svc/report?id=[% savedreport.id | uri %]">[% Koha.Preference('staffClientBaseURL') | html %]/cgi-bin/koha/svc/report?id=[% savedreport.id | html %]</a>
356                                                         [% END %]
357                                                     </td>
358                                                     <td>
359                                                         [% savedreport.cache_expiry | html %]
360                                                     </td>
361                                                     <td>
362                                                         [% FOR result IN savedreport.results %]
363                                                             <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=retrieve%20results&amp;id=[% result.id | uri %]">[% result.date_run | html %]</a>
364                                                             <br/>
365                                                         [% END %]
366                                                     </td>
367                                                     <td>
368                                                         [% IF savedreport.seems_obsolete %]
369                                                             This report seems obsolete, it uses biblioitems.marcxml field.
370                                                             <a href="/cgi-bin/koha/svc/convert_report?report_id=[% savedreport.id | uri %]" data-report_id="[% savedreport.id | html %]" class="update_sql btn btn-default btn-xs" title="Update SQL"><i class="fa fa-eye"></i> Update SQL</a>
371                                                         [% END %]
372                                                     </td>
373                                                     <td>
374                                                         <div class="btn-group dropup">
375                                                             [%# There should be no space between these two buttons, it would render badly %]
376                                                             <a class="btn btn-default btn-xs" role="button"
377                                                                href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id | html %]&amp;phase=Run%20this%20report"><i
378                                                                class="fa fa-play"></i> Run</a><a
379                                                                class="btn btn-default btn-xs dropdown-toggle" id="reportactions[% savedreport.id | html %]" role="button" data-toggle="dropdown"
380                                                                href="#"><b class="caret"></b></a>
381                                                             <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="reportactions[% savedreport.id | html %]">
382                                                                 <li><a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id | uri %]&amp;phase=Show%20SQL"><i class="fa fa-search"></i> View</a></li>
383                                                                 <li>
384                                                                     <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id | uri %]&phase=Show%20SQL" class="preview_sql" data-reportid="[% savedreport.id | html %]">
385                                                                         <i class="fa fa-eye"></i> Preview SQL
386                                                                     </a>
387                                                                 </li>
388                                                                 [% IF ( CAN_user_reports_create_reports ) %]
389                                                                     <li><a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id | uri %]&amp;phase=Edit%20SQL"><i class="fa fa-pencil"></i> Edit</a></li>
390                                                                     <li><a title="Duplicate this saved report" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create report from existing&amp;report_id=[% savedreport.id | uri %]"><i class="fa fa-copy"></i> Duplicate</a></li>
391                                                                 [% END %]
392                                                                 [% IF (Koha.Preference('Mana') == 1) %]
393                                                                     <li><a class="ShareButton" data-toggle="modal" href="#mana_share_report" title="Share your report with Mana Knowledge Base"><i class="fa fa-share-alt"></i> Share</a></li>
394                                                                 [% END %]
395                                                                 <li><a href="/cgi-bin/koha/tools/scheduler.pl?id=[% savedreport.id | uri %]"><i class="fa fa-clock-o"></i> Schedule</a></li>
396                                                                 [% IF ( CAN_user_reports_delete_reports ) %]
397                                                                     <li><a class="confirmdelete" title="Delete this saved report" href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id | html %]&amp;phase=Delete%20Saved"><i class="fa fa-trash"></i> Delete</a></li>
398                                                                 [% END %]
399                                                             </ul>
400                                                         </div>
401                                                         <input type="hidden" id="previewSql[% savedreport.id | html %]" value="[% savedreport.savedsql | html %]" data-title="[% savedreport.report_name | html %]" />
402                                                     </td>
403                                                 </tr>
404                                             [% END %]
405                                         </tbody>
406                                     </table>
407
408                                     [% IF ( CAN_user_reports_delete_reports ) %]
409                                         <fieldset class="action">
410                                             <input type="submit" value="Delete selected" />
411                                         </fieldset>
412                                     [% END %]
413                                 </form>
414                             </div>
415                         </div>
416                     [% ELSE # IF ( savedreports ) %]
417                         <div class="dialog message">
418                             [% IF (filter_set || filters.date || filters.author || filters.keyword) %]
419                                 <h4>No saved reports match your criteria. </h4>
420                                 [% IF ( CAN_user_reports_create_reports ) %]
421                                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="get">
422                                         <input type="hidden" name="phase" value="Build new" />
423                                         <button type="submit" class="new"><i class="fa fa-plus"></i> New guided report</button>
424                                     </form>
425
426                                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="get">
427                                         <input type="hidden" name="phase" value="Create report from SQL" />
428                                         <button type="submit" class="new"><i class="fa fa-plus"></i> New SQL report</button>
429                                     </form>
430
431                                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="get">
432                                         <input type="hidden" name="phase" value="Use saved" />
433                                         <input type="hidden" name="filter_set" value="1" />
434                                         <input type="hidden" name="filter_keyword" value="" />
435                                         <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> Cancel filter</button>
436                                     </form>
437                                 [% END %]
438                             [% ELSE %]
439                                 <h4>There are no saved reports. </h4>
440                                 [% IF ( CAN_user_reports_create_reports ) %]
441                                     <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Build%20new">Build a new report?</a>
442                                 [% END %]
443                             [% END # IF (filter_set || filters.date || filters.author || filters.keyword) %]
444                         </div> <!-- /.dialog.message -->
445                     [% END # /IF ( savedreports ) %]
446                 [% END # /IF ( saved1 ) %]
447
448                 [% INCLUDE 'mana/mana-share-report.inc' %]
449
450                 [% IF ( build1 ) %]
451                     [% IF ( cache_error) %]
452                         <div class="dialog alert">
453                             <strong> Please choose a cache_expiry less than 30 days </strong>
454                         </div>
455                     [% END %]
456
457                     <h1>Build a report</h1>
458                     <form action="/cgi-bin/koha/reports/guided_reports.pl">
459                         <fieldset class="rows">
460                             <legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and choose report visibility </legend>
461                             <ol>
462                                 <li>
463                                     <label for="area">Choose: </label>
464                                     <select name="area" id="area">
465                                         [%- FOREACH area IN areas -%]
466                                             <option value="[% area | html %]">[%- PROCESS area_name area=area -%]</option>
467                                         [%- END -%]
468                                     </select>
469                                 </li>
470                                 [% IF (public) %]
471                                     <li>
472                                         <label for="public">Report is public:</label>
473                                         <select id="public" name="public">
474                                             <option value="0">No (default)</option>
475                                             <option value="1" selected="selected">Yes</option>
476                                         </select>
477                                     </li>
478                                 [% ELSE %]
479                                     <li>
480                                         <label for="public">Report is public:</label>
481                                         <select id="public" name="public">
482                                             <option value="0" selected="selected">No (default)</option>
483                                             <option value="1">Yes</option>
484                                         </select>
485                                     </li>
486                                 [% END %]
487
488                                 [% IF (usecache) %]
489                                     <li>
490                                         <label for="cache_expiry">Cache expiry:</label>
491                                         <input type="text" id="cache_expiry" name="cache_expiry" value="[% cache_expiry | html %]"></input>
492                                         <select id="cache_expiry_units" name="cache_expiry_units">
493                                             <option value="seconds">Seconds (default)</option>
494                                             <option value="minutes">Minutes</option>
495                                             <option value="hours">Hours</option>
496                                             <option value="days">Days</option>
497                                         </select>
498                                     </li>
499                                 [% END %]
500                             </ol>
501                         </fieldset> <!-- /.rows -->
502                         <fieldset class="action">
503                             <input type="hidden" name="phase" value="Report on this Area" />
504                             <input type="submit" name="submit" value="Next &gt;&gt;" />
505                         </fieldset>
506                     </form>
507                 [% END # /build1 %]
508
509                 [% IF ( build2 ) %]
510                     <h1>Build a report</h1>
511                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post">
512                         <input type="hidden" name="area" value="[% area | html %]" />
513                         <input type="hidden" name="public" value="[% public | html %]" />
514                         <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
515                         <fieldset class="rows">
516                             <legend>Step 2 of 6: Pick a report type</legend>
517                             <ol>
518                                 <li>
519                                     <label for="types">Choose: </label>
520                                     <select id="types" name="types">
521                                         <option value="1">Tabular</option>
522                                         <option value="2" disabled="disabled">Summary</option>
523                                         <option value="3" disabled="disabled">Matrix</option>
524                                     </select>
525                                 </li>
526                             </ol>
527                         </fieldset>
528
529                         <fieldset class="action">
530                             <input type="hidden" name="phase" value="Choose this type" />
531                             <input type="button" name="back" value="&lt;&lt; Back" class="goback" />
532                             <input type="submit" name="submit" value="Next &gt;&gt;" />
533                         </fieldset>
534                     </form>
535                 [% END # /IF (build2 ) %]
536
537                 [% IF ( build3 ) %]
538                     <h1>Build a report</h1>
539                     <h3>Step 3 of 6: Select columns for display</h3>
540                     <p>Note: Be careful selecting when selecting columns. If your choice is too broad it could result in a very large report that will either not complete, or slow your system down.</p>
541
542                     <form id="column_submit" action="/cgi-bin/koha/reports/guided_reports.pl" method="post">
543                         <input type="hidden" name="area" value="[% area | html %]" />
544                         <input type="hidden" name="type" value="[% type | html %]" />
545                         <input type="hidden" name="public" value="[% public | html %]" />
546                         <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
547                         <fieldset>
548                             <div class="row">
549                                 <div class="col-sm-6">
550                                     <div style="float: left;">
551                                         <select id="availableColumns" name="oldcolumns2" multiple="multiple" size="25" style="min-width: 200px;height:300px;">
552                                             [% FOREACH column IN columns %]
553                                                 [% IF ( column.table ) %]
554                                                     [% IF ( loop.first ) %]
555                                                     [% ELSE %]
556                                                         </optgroup>
557                                                     [% END %]
558                                                     <optgroup label="[% column.table | html %]">
559                                                 [% ELSE %]
560                                                     <option value="[% column.name | html %]">
561                                                         [% IF ( column.description ) %]
562                                                             [% column.description | html %] &nbsp; / &nbsp; [% column.name | html %]
563                                                         [% ELSE %]
564                                                             [% column.name | html %]
565                                                         [% END %]
566                                                     </option>
567                                                 [% END %]
568                                             [% END %]
569                                             </optgroup>
570                                         </select>
571                                     </div>
572                                     <div style="width: 6.3em; float: right; margin-top: 100px">
573                                         <input type="button" name="Add" value="Add" class="button" style="width:6em;" id="addColumn" /><br />
574                                         <input type="button" name="delete" value="&lt;&lt; Delete" class="button" style="width: 6em; margin: 1em 0;" id="delColumn" />
575                                     </div>
576                                 </div> <!-- /.col-sm-6 -->
577
578                                 <div class="col-sm-6">
579                                     <select id="selectedColumns" name="columns" multiple="multiple" size="25" style="width:200px; height:300px;">
580                                     </select>
581                                 </div>
582                             </div> <!-- /.row -->
583                         </fieldset>
584                         <fieldset class="action">
585                             <input type="hidden" name="phase" value="Choose these columns" />
586                             <input type="button" name="back" value="&lt;&lt; Back" class="goback" />
587                             <input type="submit" name="submit" value="Next &gt;&gt;" />
588                         </fieldset>
589                     </form> <!-- /#column_submit -->
590                 [% END # /IF ( build3 ) %]
591
592                 [% IF ( build4 ) %]
593                     <h1>Build a report</h1>
594                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post" >
595                         <input type="hidden" name="area" value="[% area | html %]" />
596                         <input type="hidden" name="type" value="[% type | html %]" />
597                         <input type="hidden" name="column" value="[% column | html %]" />
598                         <input type="hidden" name="public" value="[% public | html %]" />
599                         <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
600                         <fieldset>
601                             <legend>Step 4 of 6: Select criteria to limit on</legend>
602                             <table>
603                                 [% FOREACH criteri IN criteria %]
604                                     <tr>
605                                         <td>
606                                             <input type="checkbox" name="criteria_column" id="[% criteri.name | html %]" value="[% criteri.name | html %]" />
607                                             <label for="[% criteri.name | html %]">[% criteri.description | html %] </label>
608                                         </td>
609                                         [% IF ( criteri.date ) %]
610                                             <td>
611                                                 <input type="text" size="10" id="[% criteri.name | html %]_value" name="[% criteri.name | html %]_value" value="" class="flatpickr" />
612                                                 <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
613                                             </td>
614                                         </tr>
615                                         [% ELSE %]
616                                             [% IF ( criteri.textrange ) %]
617                                                 <td>
618                                                     from
619                                                     <input type="text" size="10" id="[% criteri.from | html %]_value" name="[% criteri.from | html %]_value" value="" /> to
620                                                     <input type="text" size="10" id="[% criteri.to | html %]_value" name="[% criteri.to | html %]_value" value="" />
621                                                 </td>
622                                             </tr>
623                                             [% ELSE %]
624                                                 [% IF ( criteri.daterange ) %]
625                                                     <td>
626                                                         from
627                                                         <input type="text" size="10" id="from_[% criteri.name.remove('\.') | html %]_value" name="from_[% criteri.name | html %]_value" value="" data-date_to="to_[% criteri.name.remove('\.') | html %]_value" class="flatpickr" />
628                                                         to
629                                                         <input type="text" size="10" id="to_[% criteri.name.remove('\.') | html %]_value" name="to_[% criteri.name | html %]_value" value="" class="flatpickr" />
630                                                         <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
631                                                     </td>
632                                                 </tr>
633                                                 [% ELSE %]
634                                                     <td>
635                                                         <select name="[% criteri.name | html %]_value">
636                                                            [% FOREACH value IN criteri.values %]
637                                                                 <option value="[% value.availablevalues | html %]">
638                                                                     [% IF ( value.default ) %]
639                                                                         Default
640                                                                     [% ELSE %]
641                                                                         [% value.display_value | html %]
642                                                                     [% END %]
643                                                                 </option>
644                                                             [% END %]
645                                                         </select>
646                                                     </td>
647                                                 </tr>
648                                                 [% END %]
649                                             [% END %]
650                                         [% END %]
651                                 [% END %]
652                             </table>
653                         </fieldset>
654
655                         [% IF ( definitions ) %]
656                             <fieldset>
657                                 <legend>Dictionary definitions</legend>
658                                 <table>
659                                     [% FOREACH definition IN definitions %]
660                                         <tr>
661                                             <td>
662                                                 <input type="checkbox" name="definition" value="[% definition.id | html %]" />
663                                                 [% definition.name | html %]
664                                             </td>
665                                         </tr>
666                                     [% END %]
667                                 </table>
668                             </fieldset>
669                         [% END %]
670
671                         <fieldset class="action">
672                             <input type="hidden" name="phase" value="Choose these criteria" />
673                             <input type="button" name="back" value="&lt;&lt; Back" class="goback" />
674                             <input type="submit" name="submit" value="Next &gt;&gt;" />
675                         </fieldset>
676                     </form>
677                 [% END # /IF ( build4 ) %]
678
679                 [% IF ( build5 ) %]
680                     <h1>Build a report</h1>
681                     <h3>Step 5 of 6: Pick which columns to total</h3>
682                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post">
683                         <input type="hidden" name="area" value="[% area | html %]" />
684                         <input type="hidden" name="type" value="[% type | html %]" />
685                         <input type="hidden" name="column" value="[% column | html %]" />
686                         <input type="hidden" name="definition" value="[% definition | html %]" />
687                         <input type="hidden" name="criteria" value="[% criteriastring | html %]" />
688                         <input type="hidden" name="public" value="[% public | html %]" />
689                         <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
690                         <fieldset>
691                             <table>
692                                 [% FOREACH total_b IN total_by %]
693                                     <tr>
694                                         <td>
695                                             <input type="checkbox" name="total_by" id="[% total_b.name | html %]" value="[% total_b.name | html %]" />
696                                             <label for="[% total_b.name | html %]">[% total_b.name | html %]</label>
697                                         </td>
698                                         <td>
699                                             <select name="[% total_b.name | html %]_tvalue">
700                                                 [% FOREACH selec IN total_b.select %]
701                                                     <option value="[% selec.value | html %]">[% selec.value | html %]</option>
702                                                 [% END %]
703                                             </select>
704                                         </td>
705                                     </tr>
706                                 [% END %]
707                             </table>
708                         </fieldset>
709
710                         <fieldset class="action"><input type="hidden" name="phase" value="Choose these operations" />
711                             <input type="button" name="back" value="&lt;&lt; Back" class="goback" />
712                             <input type="submit" name="submit" value="Next &gt;&gt;" />
713                         </fieldset>
714                     </form>
715                 [% END # /IF ( build5 ) %]
716
717                 [% IF ( build6 ) %]
718                     <h1>Build a report</h1>
719                     <h3>Step 6 of 6: Choose how you want the report ordered</h3>
720                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post">
721                         <input type="hidden" name="area" value="[% area | html %]" />
722                         <input type="hidden" name="type" value="[% type | html %]" />
723                         <input type="hidden" name="column" value="[% column | html %]" />
724                         <input type="hidden" name="criteria" value="[% criteriastring | html %]" />
725                         <input type="hidden" name="definition" value="[% definition | html %]" />
726                         <input type="hidden" name="totals" value="[% totals | html %]" />
727                         <input type="hidden" name="public" value="[% public | html %]" />
728                         <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
729                         <fieldset>
730                             <table>
731                                 [% FOREACH order_b IN order_by %]
732                                     <tr>
733                                         <td>
734                                             <input type="checkbox" id="[% order_b.name | html %]" name="order_by" value="[% order_b.name | html %]" />
735                                             <label for="[% order_b.name | html %]">[% order_b.name | html %]</label>
736                                         </td>
737                                         <td>
738                                             <select name="[% order_b.name | html %]_ovalue">
739                                                 [% FOREACH selec IN order_b.select %]
740                                                     <option value="[% selec.value | html %]">[% selec.value | html %]</option>
741                                                 [% END %]
742                                             </select>
743                                         </td>
744                                     </tr>
745                                 [% END %]
746                             </table>
747                         </fieldset>
748                         <fieldset class="action">
749                             <input type="hidden" name="phase" value="Build report" />
750                             <input type="submit" name="submit" value="Finish" />
751                         </fieldset>
752                     </form>
753                 [% END #/ IF ( build6 ) %]
754
755                 [% IF ( showreport ) %]
756                     <h1>Confirm custom report</h1>
757                     <p>Your report will be generated with the following SQL statement.</p>
758                     <p>
759                         [% sql | html %]
760                     </p>
761
762                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post">
763                         <input type="hidden" name="sql" value="[% sql | html %]" />
764                         <input type="hidden" name="type" value="[% type | html %]" />
765                         <input type="hidden" name="public" value="[% public | html %]" />
766                         <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
767                         <p>You will need to save the report before you can execute it</p>
768                         <fieldset class="action"><input type="hidden" name="phase" value="Save" />
769                             <input type="submit" name="submit" value="Next" />
770                         </fieldset>
771                     </form>
772                 [% END #/ IF ( showreport ) %]
773
774                 [% IF ( save ) %]
775                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post" id="sql_report_form">
776                         <input type="hidden" name="sql" value="[% sql | html %]" />
777                         <input type="hidden" name="type" value="[% type | html %]" />
778                         <input type="hidden" name="area" value="[% area | html %]" />
779                         <input type="hidden" name="public" value="[% public | html %]" />
780                         <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
781                         <fieldset class="rows">
782                             <legend>Save your custom report</legend>
783                             <ol>
784                                 <li>
785                                     <label for="reportname" class="required">Report name: </label>
786                                     <input type="text" id="reportname" name="reportname" class="required" required="required" />
787                                     <span class="required">Required</span>
788                                 </li>
789                                 [% PROCESS group_and_subgroup_selection %]
790                                 <li>
791                                     <label for="notes">Notes:</label>
792                                     <textarea name="notes" id="notes"></textarea>
793                                 </li>
794                             </ol>
795                         </fieldset>
796                         <fieldset class="action"><input type="hidden" name="phase" value="Save Report" />
797                             <input type="submit" name="submit" value="Save report" />
798                         </fieldset>
799                     </form>
800                 [% END # /IF( save ) %]
801
802                 [% IF ( warn_authval_problem ) %]
803                     <div class="dialog alert">
804                         <h3>Errors found when processing parameters for report: [% name | html %]</h3>
805                         [% FOREACH problematic_authval IN problematic_authvals %]
806                             <p>
807                             <strong>[% problematic_authval.name | html %]:</strong> The authorized value category (<strong>[% problematic_authval.authval | html %]</strong>)
808                                 you selected does not exist.
809                             </p>
810                         [% END %]
811                         <!-- Save Anyway Form -->
812                         <form action='/cgi-bin/koha/reports/guided_reports.pl'>
813                         <!--Every parameter the user issued is provided as a hidden field for recovery-->
814                             <input type='hidden' name='id' value='[% id | html %]' />
815                             <input type='hidden' name='sql' value='[% sql | html %]' />
816                             <input type='hidden' name='reportname' value='[% reportname | html %]' />
817                             <input type='hidden' name='group' value='[% group | html %]' />
818                             <input type='hidden' name='subgroup' value='[% subgroup | html %]' />
819                             <input type='hidden' name='notes' value='[% notes | html %]' />
820                             <input type='hidden' name='cache_expiry' value='[% cache_expiry | html %]' />
821                             <input type='hidden' name='cache_expiry_units' value='[% cache_expiry_units | html %]' />
822                             <input type='hidden' name='public' value='[% public | html %]' />
823                         [% IF ( phase_update) %]
824                             <input type='hidden' name='phase' value='Update SQL' />
825                             <button type="submit" name="save_anyway" value="Save anyway" class="approve"><i class="fa fa-fw fa-check"></i> Save anyway</button>
826                         [% ELSIF ( phase_save) %]
827                             <input type='hidden' name='area' value='[% area | html %]' />
828                             <input type='hidden' name='phase' value='Save Report' />
829                             <button type="submit" name="save_anyway" value="Save anyway" class="approve"><i class="fa fa-fw fa-check"></i> Save anyway</button>
830                         [% END %]
831                         </form>
832                         <!-- Go back to editing -->
833                         <form action='/cgi-bin/koha/reports/guided_reports.pl'>
834                             <button type="button" class="new goback"><i class="fa fa-fw fa-pencil"></i> Edit SQL</button>
835                         </form>
836                     </div>
837                 [% END # /IF ( warn_authval_problem )%]
838
839                 [% IF ( enter_params ) %]
840                     <form action='/cgi-bin/koha/reports/guided_reports.pl'>
841                         <input type='hidden' name='reports' value="[% reports | html %]" />
842                         [% IF ( auth_val_error ) %]
843                             <input type='hidden' name='phase' value='Edit SQL' />
844                             <div class="dialog alert">
845                                 <h3>Errors found when processing parameters for report: [% name | html %]</h3>
846                                 [% FOREACH auth_val_error IN auth_val_errors %]
847                                     <p>
848                                         <strong>[% auth_val_error.entry | html %]:</strong> The authorized value category (<strong>[% auth_val_error.auth_val | html %]</strong>)
849                                         you selected does not exist.
850                                     </p>
851                                 [% END %]
852                             </div>
853                             <fieldset class="action"><input type="submit" value="Edit SQL" /></fieldset>
854                         [% ELSE #  IF ( auth_val_error ) %]
855                             <input type='hidden' name='phase' value='Run this report' />
856                             <h1>Enter parameters for report [% name | html %]:</h1>
857                             [% IF ( notes ) %]
858                                 <p>[% notes | html %]</p>
859                             [% END %]
860                             <fieldset class="rows">
861                                 <ol>
862                                     [% FOREACH sql_param IN sql_params %]
863                                         <input name="param_name" value="[% sql_param.name | html %]" type="hidden" />
864                                         [% IF sql_param.input == 'date' %]
865                                             <li>
866                                                 <label for="date_[% sql_param_entry | html %][% loop.count | html %]">[% sql_param.entry | html %]:</label> <input id="date_[% sql_param_entry | html %][% loop.count | html %]" type="text" value="" size="10" name="sql_params" class="flatpickr" />
867                                             </li>
868                                         [% ELSIF ( sql_param.input == 'text' ) %]
869                                             <li>
870                                                 <label for="sql_params[% loop.count | html %]">[% sql_param.entry | html %]: </label>
871                                                 <input id="sql_params[% loop.count | html %]" type="text" name="sql_params" />
872                                             </li>
873                                         [% ELSIF ( sql_param.input == 'textarea' ) %]
874                                             <li>
875                                                 <label for="sql_params[% loop.count | html %]">[% sql_param.entry | html %]: </label>
876                                                 <textarea id="sql_params[% loop.count | html %]" name="sql_params" rows="5"></textarea>
877                                             </li>
878                                         [% ELSE %]
879                                             <li>
880                                                 <label for="sql_params_[% sql_param.labelid | html %]">[% sql_param.entry | html %]:</label>
881                                                 <select name="[%- sql_param.input.name | html -%]" tabindex="1"  id="[%- sql_param.input.id | html -%]">
882                                                     [% IF (sql_param.include_all) %]
883                                                         <option value="%">All</option>
884                                                     [% END %]
885                                                     [% FOREACH value IN sql_param.input.values %]
886                                                         <option value="[%- value | html -%]">[%- sql_param.input.labels.$value | html -%]</option>
887                                                     [% END %]
888                                                 </select>
889                                             </li>
890                                         [% END # /IF sql_param.input == 'date' %]
891                                     [% END # /FOREACH sql_param %]
892                                 </ol>
893                             </fieldset> <!-- /.rows -->
894                             <fieldset class="action">
895                                 <input type="submit" value="Run the report" />
896                             </fieldset>
897                         [% END # / IF ( auth_val_error ) %]
898                     </form>
899                 [% END # /IF ( enter_params ) %]
900
901                 [% IF ( execute ) %]
902                     <h1>[% name | html %] <span id="report_id">([% id | html %])</span></h1>
903                     [% IF ( notes ) %]
904                         <p><span class="label">Notes:</span> [% notes | html %]</p>
905                     [% END %]
906                     [% IF ( unlimited_total ) %]
907                         <p>
908                             <span class="label">Total number of results:</span>
909                             [% unlimited_total | html %]
910                             [% IF unlimited_total >= limit %]
911                                 ([% limit | html %] shown)
912                             [% END %].
913                         </p>
914                     [% END %]
915
916                     <div id="sql_output" style="display:none;">
917                         <span class="label">Report SQL:</span>
918                         <textarea id="sql" readonly="readonly">[% sql | html %]</textarea>
919                     </div>
920
921                     <div>
922                         <a href="#" id="toggle_chart_settings_hid" class="toggle_chart_settings" style="display:none"><i class="fa fa-eye-slash"></i> Hide chart</a>
923                         <a href="#" id="toggle_chart_settings_vis" class="toggle_chart_settings" style="display:none"><i class="fa fa fa-eye"></i> Show chart</a>
924                     </div>
925                     <div id="chart" class="clearfix"></div>
926
927                     [% IF ( execute ) %]
928                         [% UNLESS ( errors ) %]
929                             <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/batch_record_modification.pl" id="batch_record_modification">
930                                 <input type="hidden" name="recordtype" value="biblio" />
931                                 <input type="hidden" name="op" value="list" />
932                                 [% # Preserve the whitespace of the following textarea in order to format the values correctly %]
933                                 <textarea style="display:none" name="recordnumber_list" id="recordnumber_list">
934                                     [%- recordnumbers = PROCESS batch_list results=results batch_type='biblionumber' | trim | html %][% IF recordnumbers %][% SET batch_biblionumbers = 1 %][% recordnumbers | html %][% END -%]
935                                 </textarea>
936                             </form>
937
938                             <form method="POST" action="/cgi-bin/koha/tools/batch_delete_records.pl" id="batch_record_deletion">
939                                 <input type="hidden" name="recordtype" value="biblio" />
940                                 <input type="hidden" name="op" value="list" />
941                                 [% # Preserve the whitespace of the following textarea in order to format the values correctly %]
942                                 <textarea style="display:none" name="recordnumber_list" id="recordnumber_list">
943                                     [%- recordnumbers = PROCESS batch_list results=results batch_type='biblionumber' | trim | html %][% IF recordnumbers %][% SET batch_biblionumbers = 1 %][% recordnumbers | html %][% END -%]
944                                 </textarea>
945                             </form>
946
947                             <form method="POST" action="/cgi-bin/koha/tools/batchMod.pl" id="batch_item_modification">
948                                 <input type="hidden" name="op" value="show" />
949                                 [% FOREACH result IN results %]
950                                     [% FOREACH cells IN result.cells %]
951                                         [% place = loop.index %]
952                                         [% NEXT UNLESS cells.cell.match('^(\d+)$') %]
953                                         [% IF header_row.$place.cell == 'itemnumber' || header_types.item(header_row.$place.cell) == 'itemnumber'  %]
954                                             [% SET batch_itemnumbers = 1 %]
955                                             [% SET header_row.$place.has_itemnumbers = 1 %]
956                                             <input type="hidden" name="[% header_row.$place.cell | html %]" value="[% cells.cell | html %]" />
957                                         [% END %]
958                                     [% END %]
959                                 [% END %]
960                             </form>
961
962                             <form method="POST" action="/cgi-bin/koha/tools/batchMod.pl" id="batch_item_deletion">
963                                 <input type="hidden" name="op" value="show" />
964                                 <input type="hidden" name="del" value="1" />
965                                 [% FOREACH result IN results %]
966                                     [% FOREACH cells IN result.cells %]
967                                         [% place = loop.index %]
968                                         [% NEXT UNLESS cells.cell.match('^(\d+)$') %]
969                                         [% IF header_row.$place.cell == 'itemnumber' || header_types.item(header_row.$place.cell) == 'itemnumber'  %]
970                                             [% SET batch_itemnumbers = 1 %]
971                                             [% SET header_row.$place.has_itemnumbers = 1 %]
972                                             <input type="hidden" name="[% header_row.$place.cell | html %]" value="[% cells.cell | html %]" />
973                                         [% END %]
974                                     [% END %]
975                                 [% END %]
976                             </form>
977
978                             <form method="get" action="/cgi-bin/koha/virtualshelves/addbybiblionumber.pl" id="batch_add_to_list">
979                                 [% FOREACH result IN results %]
980                                     [% FOREACH cells IN result.cells %]
981                                         [% place = loop.index %]
982                                         [% NEXT UNLESS cells.cell.match('^(\d+)$') %]
983                                         [% IF header_row.$place.cell == 'biblionumber' || header_types.item(header_row.$place.cell) == 'biblionumber' %]
984                                             [% SET batch_biblionumbers = 1 %]
985                                             [% SET header_row.$place.has_biblionumbers = 1 %]
986                                             <input type="hidden" class="bib_to_list" name="biblionumber" value="[% cells.cell | html %]" />
987                                         [% END %]
988                                     [% END %]
989                                 [% END %]
990                             </form>
991
992                             <form method="POST" action="/cgi-bin/koha/tools/modborrowers.pl" id="batch_patron_modification">
993                                 <input type="hidden" name="op" value="show" />
994                                 [% # Preserve the whitespace of the following textarea in order to format the values correctly %]
995                                 <textarea style="display:none" name="cardnumberlist" id="cardnumberlist">
996                                     [%- cardnumbers = PROCESS batch_list results=results batch_type='cardnumber' | trim | html %][% IF cardnumbers %][% SET batch_cardnumbers = 1 %][% cardnumbers | html %][% END -%]
997                                 </textarea>
998                             </form>
999
1000                             [% BLOCK batch_list %]
1001                                     [%- FOREACH result IN results %]
1002                                         [%- FOREACH cells IN result.cells %]
1003                                             [%- place = loop.index %]
1004                                             [%- IF header_row.$place.cell == batch_type || header_types.item(header_row.$place.cell) == batch_type %]
1005 [%# We must not add whitespace to the cardnumbers %][% cells.cell | html %]
1006                                             [%- END %]
1007                                         [%- END %]
1008                                     [%- END -%]
1009                             [% END %]
1010
1011                             <form action="/cgi-bin/koha/reports/guided_reports.pl" method="get" id="limitselect">
1012                                 <input type="hidden" name="phase" value="Run this report"/>
1013                                 <input type="hidden" name="reports" value="[% report_id | html %]"/>
1014                                 [% FOREACH p IN sql_params %]
1015                                     <input type="hidden" name="sql_params" value="[% p | html %]"/>
1016                                 [% END %]
1017                                 [% FOREACH n IN param_names %]
1018                                     <input type="hidden" name="param_name" value="[% n | html %]"/>
1019                                 [% END %]
1020                                 <input type="hidden" name="limit" id="limit" value="20" />
1021                             </form> <!-- /#limitselect -->
1022
1023                             [% IF ( batch_biblionumbers || batch_itemnumbers || batch_cardnumbers ) || ( unlimited_total > 10 && limit <= 1000 ) %]
1024                                 <div id="toolbar" class="btn-toolbar">
1025                                     [% IF ( batch_biblionumbers || batch_itemnumbers || batch_cardnumbers ) %]
1026                                         <div class="btn-group">
1027                                             <button class="btn btn-default btn-sm dropdown-toggle" type="button" id="batch_mod_menu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
1028                                                 Batch operations with [% IF unlimited_total >= limit %][% limit | html %][% ELSE %][% unlimited_total | html %][% END %] visible records
1029                                                 <span class="caret"></span>
1030                                             </button>
1031                                             <ul class="dropdown-menu" aria-labelledby="batch_mod_menu">
1032                                                 [% FOREACH header_ro IN header_row %]
1033                                                     [% IF header_ro.has_biblionumbers && ( header_ro.cell == 'biblionumber' || header_types.item( header_ro.cell ) == 'biblionumber' ) %]
1034                                                         <li class="dropdown-header">Bibliographic records</li>
1035                                                         <li>
1036                                                             <a href="#" data-submit="batch_record_modification" data-toggle="tooltip" data-placement="right" title="Send visible records to batch record modification" class="batch_op send_to_record_mod">Batch record modification</a>
1037                                                         </li>
1038                                                         <li>
1039                                                             <a href="#" data-submit="batch_record_deletion" data-toggle="tooltip" data-placement="right" title="Send visible records to batch record deletion" class="batch_op send_to_record_del">Batch record deletion</a>
1040                                                         </li>
1041                                                         <li>
1042                                                             <a href="#" data-submit="batch_add_to_list" data-toggle="tooltip" data-placement="right" title="Send visible records to a list" class="batch_op send_to_list">Add to list</a>
1043                                                         </li>
1044                                                     [% END %]
1045                                                     [% IF header_ro.has_itemnumbers && ( header_ro.cell == 'itemnumber' || header_types.item( header_ro.cell ) == 'itemnumber' ) %]
1046                                                         [% IF ( batch_biblionumbers ) %]
1047                                                             <li role="separator" class="divider"></li>
1048                                                         [% END %]
1049                                                         <li class="dropdown-header">Item records</li>
1050                                                         <li>
1051                                                             <a href="#" data-submit="batch_item_modification" data-toggle="tooltip" data-placement="right" title="Send visible items to batch item modification" class="batch_op send_to_item_mod">Batch item modification</a>
1052                                                         </li>
1053                                                         <li>
1054                                                             <a href="#" data-submit="batch_item_deletion" data-toggle="tooltip" data-placement="right" title="Send visible items to batch item deletion" class="batch_op send_to_item_del">Batch item deletion</a>
1055                                                         </li>
1056                                                     [% END %]
1057                                                     [% IF header_ro.cell == 'cardnumber' || header_types.item( header_ro.cell ) == 'cardnumber' %]
1058                                                         [% IF ( batch_biblionumbers || batch_itemnumbers ) %]
1059                                                             <li role="separator" class="divider"></li>
1060                                                         [% END %]
1061                                                         <li class="dropdown-header">Patron records</li>
1062                                                         <li>
1063                                                             <a href="#" data-submit="batch_patron_modification" data-toggle="tooltip" data-placement="right" title="Send visible results to batch patron modification" class="batch_op send_to_patron_mod">Batch patron modification</a>
1064                                                         </li>
1065                                                     [% END %]
1066                                                 [% END # /FOREACH header_ro %]
1067                                             </ul> <!-- /.dropdown-menu -->
1068                                         </div> <!-- /.dropdown -->
1069                                     [% END # /IF ( batch_biblionumbers || batch_itemnumbers || batch_cardnumbers ) %]
1070
1071                                     [% IF ( unlimited_total > 10 && limit <= 1000 ) %]
1072                                         <div class="btn-group">
1073                                             <button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
1074                                                 [% IF ( limit ) %]
1075                                                     Rows per page: <strong>[% limit | html %]</strong>
1076                                                 [% ELSE %]
1077                                                     Rows per page
1078                                                 [% END %]
1079                                                 <span class="caret"></span>
1080                                             </button>
1081                                             <ul class="dropdown-menu">
1082                                                 [% limits = [ 10, 20, 50, 100, 200, 300, 400, 500, 1000 ] %]
1083                                                 [% FOREACH l IN limits %]
1084                                                     [% IF l == limit %]
1085                                                         <li>
1086                                                             <a class="limitselect" data-limit="[% l | html %]" href="#"><i class="fa fa-fw fa-check"></i> [% l | html %]</a>
1087                                                         </li>
1088                                                     [% ELSE %]
1089                                                         <li>
1090                                                             <a class="limitselect" data-limit="[% l | html %]" href="#"><i class="fa fa-fw"></i> [% l | html %]</a>
1091                                                         </li>
1092                                                     [% END %]
1093                                                 [% END %]
1094                                             </ul>
1095                                         </div>
1096                                     [% END # /IF ( unlimited_total > 10 && limit <= 1000 ) %]
1097
1098                                     [% IF ( batch_biblionumbers || batch_itemnumbers || batch_cardnumbers ) %]
1099                                         <a href="#" class="btn btn-link" id="toggle_auto_links">
1100                                             <i class="fa fa-eye autolink" style="display:none"></i>
1101                                             <i class="fa fa-eye-slash autolink"></i>
1102                                             <span class="autolink" style="display:none">Show data menus</span>
1103                                             <span class="autolink">Hide data menus</span>
1104                                         </a>
1105                                     [% END %]
1106                                 </div> <!-- /#toolbar.btn-toolbar -->
1107                             [% END # /IF batch operations || ( unlimited_total > 10 && limit <= 1000 ) %]
1108
1109                             <div class="pages">
1110                                 [% pagination_bar | $raw %]
1111                             </div>
1112
1113                         [% END # UNLESS ( errors ) %]
1114                     [% END # IF ( execute ) %]
1115
1116                     [% UNLESS ( errors ) %]
1117                         <table id="report_results">
1118                             <thead>
1119                                 <tr>
1120                                     [% FOREACH header_ro IN header_row %]
1121                                         [% IF header_ro.has_itemnumbers && ( header_ro.cell == 'itemnumber' || header_types.item( header_ro.cell ) == 'itemnumber' ) %]
1122                                             <th class="itemnumber">[% header_ro.cell | html %]</th>
1123                                         [% ELSIF header_ro.has_biblionumbers && ( header_ro.cell == 'biblionumber' || header_types.item( header_ro.cell ) == 'biblionumber' ) %]
1124                                             <th class="biblionumber">[% header_ro.cell | html %]</th>
1125                                         [% ELSIF header_ro.cell == 'cardnumber' || header_types.item( header_ro.cell ) == 'cardnumber' %]
1126                                             <th class="cardnumber">[% header_ro.cell | html %]</th>
1127                                         [% ELSIF header_ro.cell == 'borrowernumber' || header_types.item( header_ro.cell ) == 'borrowernumber' %]
1128                                             <th class="borrowernumber">[% header_ro.cell | html %]</th>
1129                                         [% ELSE %]
1130                                             <th>[% header_ro.cell | html %]</th>
1131                                         [% END %]
1132                                     [% END %]
1133                                 </tr>
1134                             </thead>
1135                             <tbody>
1136                                 [% FOREACH result IN results %]
1137                                     <tr>
1138                                         [% FOREACH cells IN result.cells %]
1139                                             [% place = loop.index %]
1140                                             [%- IF header_row.$place.cell == 'itemnumber' || header_types.item(header_row.$place.cell) == 'itemnumber' %]
1141                                                 <td class="batch-op itemnumber" data-number="itemnumber">
1142                                                     <span class="data-plain">[% cells.cell | $raw %]</span>
1143                                                     <div id="itemnumber_autolink" class="btn-group dropup autolink"><a class="btn btn-link dropdown-toggle" role="button" data-toggle="dropdown" href="#">[% cells.cell | $raw %] <b class="caret"></b></a>
1144                                                         <ul class="dropdown-menu pull-right" role="menu">
1145                                                             <li><a target="_blank" href="/cgi-bin/koha/cataloguing/additem.pl?op=edititem&itemnumber=[% cells.cell | $raw %]"><i class="fa fa-fw fa-pencil"></i> Edit record</a></li>
1146                                                             <li role="separator" class="divider"></li>
1147                                                             <li><a target="_blank" href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% cells.cell | $raw %]"><i class="fa fa-fw fa-eye"></i> View record</a></li>
1148                                                         </ul>
1149                                                     </div>
1150                                                 </td>
1151                                             [% ELSIF header_row.$place.cell == 'biblionumber' || header_types.item(header_row.$place.cell) == 'biblionumber' %]
1152                                                 <td class="batch-op biblionumber" data-number="biblionumber">
1153                                                     <span class="data-plain">[% cells.cell | $raw %]</span>
1154                                                     <div id="biblionumber_autolink" class="btn-group dropup autolink"><a class="btn btn-link dropdown-toggle" role="button" data-toggle="dropdown" href="#">[% cells.cell | $raw %] <b class="caret"></b></a>
1155                                                         <ul class="dropdown-menu pull-right" role="menu">
1156                                                             <li><a target="_blank" href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% cells.cell | $raw %]"><i class="fa fa-pencil"></i> Edit record</a></li>
1157                                                             <li role="separator" class="divider"></li>
1158                                                             <li><a target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% cells.cell | $raw %]"><i class="fa fa-eye"></i> View record</a></li>
1159                                                         </ul>
1160                                                     </div>
1161                                                 </td>
1162                                             [% ELSIF header_row.$place.cell == 'borrowernumber' || header_types.item(header_row.$place.cell) == 'borrowernumber' %]
1163                                                 <td class="batch-op borrowernumber" data-number="borrowernumber">
1164                                                     <span class="data-plain">[% cells.cell | $raw %]</span>
1165                                                     <div id="borrowernumber_autolink" class="btn-group dropup autolink"><a class="btn btn-link dropdown-toggle" role="button" data-toggle="dropdown" href="#">[% cells.cell | $raw %] <b class="caret"></b></a>
1166                                                         <ul class="dropdown-menu pull-right" role="menu">
1167                                                             <li><a target="_blank" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% cells.cell | $raw %]"><i class="fa fa-eye"></i> View patron</a></li>
1168                                                             <li role="separator" class="divider"></li>
1169                                                             <li><a target="_blank" href="/cgi-bin/koha/members/memberentry.pl?op=modify&borrowernumber=[% cells.cell | $raw %]"><i class="fa fa-pencil"></i> Edit patron</a></li>
1170                                                             <li role="separator" class="divider"></li>
1171                                                             <li><a target="_blank" href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% cells.cell | $raw %]"><i class="fa fa-barcode"></i> Check out</a></li>
1172                                                         </ul>
1173                                                     </div>
1174                                                 </td>
1175                                             [% ELSIF header_row.$place.cell == 'cardnumber' || header_types.item(header_row.$place.cell) == 'cardnumber' %]
1176                                                 <td class="batch-op cardnumber" data-number="cardnumber">
1177                                                     <span class="data-plain">[% cells.cell | $raw %]</span>
1178                                                     <div id="cardnumber_autolink" class="btn-group dropup autolink"><a class="btn btn-link dropdown-toggle" role="button" data-toggle="dropdown" href="#">[% cells.cell | $raw %] <b class="caret"></b></a>
1179                                                         <ul class="dropdown-menu pull-right" role="menu">
1180                                                             <li><a target="_blank" href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% cells.cell | $raw %]"><i class="fa fa-barcode"></i> Check out</a></li>
1181                                                         </ul>
1182                                                     </div>
1183                                                 </td>
1184                                             [% ELSE %]
1185                                                 <td>
1186                                                     [% cells.cell | $raw %]
1187                                                 </td>
1188                                             [% END %]
1189                                         [% END %]
1190                                     </tr>
1191                                 [% END %]
1192                             </tbody>
1193                         </table>
1194                     [% END %]
1195                     <div class="pages">[% pagination_bar | $raw %]</div>
1196
1197                     [% INCLUDE 'chart.inc' %]
1198
1199                 [% END #/IF ( execute ) %]
1200
1201                 [% IF ( create ) %]
1202                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post" id="sql_report_form">
1203                         <fieldset class="rows">
1204                             <legend>Create report from SQL</legend>
1205                             <ol>
1206                                 <li>
1207                                     <label for="reportname" class="required">Report name:</label>
1208                                     [% IF ( reportname ) %]
1209                                         <input type="text" class="required" required="required" id="reportname" name="reportname" value="[% reportname | html %]" size="50"/>
1210                                     [% ELSE %]
1211                                         <input type="text" class="required" required="required" id="reportname" name="reportname" size="50" />
1212                                     [% END %]
1213                                     <span class="required">Required</span>
1214                                 </li>
1215                                 [% PROCESS group_and_subgroup_selection %]
1216
1217                                 [% IF (public) %]
1218                                     <li>
1219                                         <label for="public">Report is public:</label>
1220                                         <select id="public" name="public">
1221                                             <option value="0">No (default)</option>
1222                                             <option value="1" selected="selected">Yes</option>
1223                                         </select>
1224                                     </li>
1225                                 [% ELSE %]
1226                                     <li>
1227                                         <label for="public">Report is public:</label>
1228                                         <select id="public" name="public">
1229                                             <option value="0" selected="selected">No (default)</option>
1230                                             <option value="1">Yes</option>
1231                                         </select>
1232                                     </li>
1233                                 [% END # /IF (public) %]
1234
1235                                 [% IF (usecache) %]
1236                                     <li>
1237                                         <label for="cache_expiry">Cache expiry:</label>
1238                                         <input type="text" id="cache_expiry" name="cache_expiry" value="[% cache_expiry | html %]"></input>
1239                                         <select id="cache_expiry_units" name="cache_expiry_units">
1240                                             <option value="seconds" selected="selected">Seconds (default)</option>
1241                                             <option value="minutes">Minutes</option>
1242                                             <option value="hours">Hours</option>
1243                                             <option value="days">Days</option>
1244                                         </select>
1245                                     </li>
1246                                 [% END # /IF (usecache) %]
1247                                 <li>
1248                                     <label for="notes">Notes:</label>
1249                                     <textarea id="notes" name="notes" cols="50" rows="2">[% notes | html %]</textarea>
1250                                 </li>
1251                             </ol>
1252                         </fieldset> <!-- /.rows -->
1253
1254                         <fieldset class="rows">
1255                             <legend>SQL:</legend>
1256                             <div style="margin:1em;">
1257                                 [% PROCESS insert_runtime_parameter  %]
1258                                 <textarea id="sql" name="sql" class="required" required="required" cols="50" rows="10">[% sql | html %]</textarea>
1259                                 <span class="required">Required</span>
1260                             </div>
1261                         </fieldset>
1262
1263                         <fieldset class="action">
1264                             <input type="hidden" name="phase" value="Save Report" />
1265                             <input type="submit" name="submit" value="Save report" />
1266                             <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved" class="cancel">Cancel</a>
1267                         </fieldset>
1268                     </form>
1269                 [% END #/IF ( create ) %]
1270
1271                 [% IF saved_results %]
1272                     <h1>Saved report results</h1>
1273                     <h2>[% name | html %]</h2>
1274                     <p>[% notes | html %]</p>
1275                     <table>
1276                         [% FOREACH rows IN saved_results %]
1277                             <tr>
1278                                 [% FOREACH col IN rows %]
1279                                     <td>[% col | html %]</td>
1280                                 [% END %]
1281                             </tr>
1282                         [% END %]
1283                     </table>
1284                 [% END # /IF saved_results %]
1285
1286                 [% IF ( showsql ) %]
1287                     <fieldset class="rows">
1288                         <legend>[% reportname | html %]</legend>
1289                         <ol>
1290                             [% IF ( notes ) %]
1291                                 <li>
1292                                     <span class="label">Notes:</span>
1293                                     [% notes | html %]
1294                                 </li>
1295                             [% ELSE %]
1296                             [% END %]
1297                             <li>
1298                                 <textarea id="sql">[% sql | html %]</textarea>
1299                             </li>
1300                         </ol>
1301                     </fieldset>
1302                 [% END # /IF ( showsql ) %]
1303
1304                 [% IF ( save_successful ) %]
1305                     [% UNLESS ( errors ) %]
1306                         </br>
1307                         <div id="report_updated">
1308                             <div class="dialog message">
1309                                 <p>Your report "[% reportname | html %]" has been saved</p>
1310                             </div>
1311                         </div>
1312                     [% END %]
1313                 [% END %]
1314
1315                 [% IF ( editsql ) %]
1316                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post" id="sql_report_form">
1317                         <input type="hidden" name="phase" value="Update SQL" />
1318                         <input type="hidden" name="id" value="[% id | html %]"/>
1319                         <fieldset class="rows">
1320                             <legend>Edit SQL report</legend>
1321                             <ol>
1322                                 <li>
1323                                     <label for="reportname" class="required">Report name: </label>
1324                                     <input type="text" id="reportname" name="reportname" value="[% reportname | html %]" size="50" class="required" required="required" />
1325                                     <span class="required">Required</span>
1326                                 </li>
1327                                 [% PROCESS group_and_subgroup_selection %]
1328                                 [% IF (public) %]
1329                                     <li>
1330                                         <label for="public">Report is public:</label>
1331                                         <select id="public" name="public">
1332                                             <option value="0">No (default)</option>
1333                                             <option value="1" selected="selected">Yes</option>
1334                                         </select>
1335                                     </li>
1336                                 [% ELSE %]
1337                                     <li>
1338                                         <label for="public">Report is public:</label>
1339                                         <select id="public" name="public">
1340                                             <option value="0" selected="selected">No (default)</option>
1341                                             <option value="1">Yes</option>
1342                                         </select>
1343                                     </li>
1344                                 [% END # /IF (public) %]
1345
1346                                 [% IF (usecache) %]
1347                                     <li>
1348                                         <label for="cache_expiry">Cache expiry:</label>
1349                                         <input type="text" id="cache_expiry" name="cache_expiry" value="[% cache_expiry | html %]" />
1350                                         <select id="cache_expiry_units" name="cache_expiry_units">
1351                                             <option value="seconds">Seconds (default)</option>
1352                                             <option value="minutes">Minutes</option>
1353                                             <option value="hours">Hours</option>
1354                                             <option value="days">Days</option>
1355                                         </select>
1356                                     </li>
1357                                 [% END %]
1358                                 <li>
1359                                     <label for="notes">Notes:</label>
1360                                     <textarea id="notes" name="notes" cols="50" rows="2">[% notes | html %]</textarea>
1361                                 </li>
1362                             </ol>
1363                         </fieldset> <!-- /.rows -->
1364
1365                         <fieldset class="rows">
1366                             <legend>SQL:</legend>
1367                                 [% PROCESS insert_runtime_parameter  %]
1368                                 <textarea id="sql" name="sql" class="required" required="required" cols="50" rows="10">[% sql | html %]</textarea>
1369                                 <span class="required" style="margin-left:30px;">Required</span>
1370                         </fieldset>
1371
1372                         <fieldset class="action">
1373                             <input type="submit" name="submit" value="Update SQL" />
1374                             <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved" class="cancel">Cancel</a>
1375                         </fieldset>
1376                     </form>
1377                 [% END # /IF ( editsql ) %]
1378
1379                 [% IF ( errors ) %]
1380                     <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post">
1381                         <div class="dialog alert">
1382                             <strong>The following error was encountered:</strong><br />
1383                             [% FOREACH error IN errors %]
1384                                 [% IF ( error.sqlerr ) %]
1385                                     This report contains the SQL keyword <strong>[% error.sqlerr | html %]</strong>.<br />
1386                                     Use of this keyword is not allowed in Koha reports due to security and data integrity risks. Only SELECT queries are allowed.<br />
1387                                     Please return to the &quot;Saved Reports&quot; screen and delete this report or retry creating a new one.
1388                                 [% ELSIF ( error.queryerr ) %]
1389                                     The database returned the following error: <br />
1390                                     [% error.queryerr | html %]<br />Please check the log for further details.
1391                                 [% ELSIF ( error.cache_expiry ) %]
1392                                     Please select a cache expiry less than 30 days.
1393                                 [% ELSE %]
1394                                 [% END %]
1395                                 <div id="onerror_actions">
1396                                     <a href="#" class="button goback">Return to previous page</a>
1397                                 </div>
1398                             [% END %]
1399                         </div>
1400                         <fieldset class="action">
1401                             <input type="hidden" name="phase" value="Use saved" />
1402                             <input type="submit" name="submit" value="Saved reports" />
1403                         </fieldset>
1404                     </form>
1405                 [% END # /IF ( errors ) %]
1406
1407             </main>
1408         </div> <!-- /.col-sm-10.col-sm-push-2 -->
1409
1410         <div class="col-sm-2 col-sm-pull-10">
1411             <aside>
1412                 [% IF ( saved1 ) %]
1413                     <div id="saved-reports-filter">
1414                         <form action="/cgi-bin/koha/reports/guided_reports.pl" method="get">
1415                             <input type="hidden" name="phase" value="Use saved" />
1416                             <input type="hidden" name="filter_set" value="1" />
1417                             <fieldset class="brief">
1418                                 <h3>Filter</h3>
1419                                 <ol>
1420                                     <li>
1421                                         <label for="filter_date">Date:</label>
1422                                         <input type="text" id="filter_date" name="filter_date" size="10" value="[% filters.date | html %]" class="flatpickr" />
1423                                         <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
1424                                     </li>
1425                                     <li>
1426                                         <label for="filter_author">Author:</label>
1427                                         <input type="text" id="filter_author" name="filter_author" value="[% filters.author | html %]" size="16" />
1428                                     </li>
1429                                     <li>
1430                                         <label for="filter_keyword">Keyword:</label>
1431                                         <input type="text" id="filter_keyword" name="filter_keyword" value="[% filters.keyword | html %]" size="16" />
1432                                     </li>
1433                                 </ol>
1434                             </fieldset> <!-- /.brief -->
1435                             <fieldset class="action">
1436                                 <input type="submit" value="Apply filter" />
1437                                 <a id="resetReportsFilter" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved&clear_filters=1">Clear</a>
1438                             </fieldset>
1439                         </form>
1440                     </div> <!-- /#saved-reports-filter -->
1441                 [% END %]
1442                 [% INCLUDE 'guided-reports-view.inc' %]
1443             </aside>
1444         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
1445     </div> <!-- /.row -->
1446
1447     <!-- Runtime Parameters Modal -->
1448     <div class="modal" id="runtime_parameters" tabindex="-1" role="dialog" aria-labelledby="runtime_parametersLabel">
1449         <div class="modal-dialog" role="document">
1450             <div class="modal-content">
1451                 <div class="modal-header">
1452                     <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
1453                     <h4 class="modal-title" id="runtime_parametersLabel">Runtime parameter options</h4>
1454                 </div>
1455                 <form id="send_runtime_parameter">
1456                     <input type="hidden" name="param_category" id="param_category" />
1457                     <div class="modal-body">
1458                         <div class="form-group">
1459                             <label for="paramLabel" class="required">Parameter label: </label>
1460                             <input class="form-control required" type="text" name="paramLabel" id="paramLabel" required="required" />
1461                             <div class="hint">The label for the field shown when the report is run, e.g. "Select a library."</div>
1462                         </div>
1463                         <div id="authorised_value_category" class="form-group" style="display:none">
1464                             <label for="authorised_value">Authorized value category:</label>
1465                             <select class="form-control" name="authorised_value" id="authorised_value">
1466                                 <option value=""></option>
1467                                 [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories() %]
1468                             </select>
1469                             <div class="hint">Select which authorized value category the user will choose from.</div>
1470                         </div>
1471                     </div> <!-- /.modal-body -->
1472                     <div class="modal-footer">
1473                         <button type="submit" id="sendParam" class="btn btn-default approve">Insert parameter</button>
1474                         <button type="button" class="btn btn-default deny" data-dismiss="modal">Cancel</button>
1475                     </div> <!-- /.modal-footer -->
1476                 </form> <!-- /#send_runtime_parameter -->
1477             </div> <!-- /.modal-content -->
1478         </div> <!-- /.modal-dialog -->
1479     </div> <!-- /#runtime_parameters -->
1480
1481 [% MACRO jsinclude BLOCK %]
1482     [% Asset.js("js/charts.js") | $raw %]
1483     [% Asset.js("lib/d3c3/d3.min.js") | $raw %]
1484     [% Asset.js("lib/d3c3/c3.min.js") | $raw %]
1485     [% INCLUDE 'calendar.inc' %]
1486     [% INCLUDE 'datatables.inc' %]
1487     [% IF ( saved1 ) %]
1488         [% INCLUDE 'columns_settings.inc' %]
1489     [% END %]
1490     [% Asset.js( "lib/codemirror/codemirror.min.js" ) | $raw %]
1491     [% Asset.js( "lib/codemirror/overlay.min.js" ) | $raw %]
1492     [% Asset.js( "lib/codemirror/sql.min.js" ) | $raw %]
1493     [% Asset.js( "js/mana.js" ) | $raw %]
1494     <script>
1495
1496         function hide_bar_element() {
1497             $('#chart-column-horizontal').hide()
1498             $('.chart-column-group').each(function( index ) {
1499                 $( this ).hide();
1500             });
1501             $('.chart-column-line').each(function( index ) {
1502                 $( this ).hide()
1503             });
1504         }
1505
1506         function show_bar_element() {
1507             $('#chart-column-horizontal').show()
1508             $('.chart-column-group').each(function( index ) {
1509                 $( this ).show()
1510             });
1511             $('.chart-column-line').each(function( index ) {
1512                 $( this ).show()
1513             });
1514         }
1515
1516         function removeColumn(id) {
1517             $('#'+id).remove();
1518
1519             if ( $('.chart-column-conf').length == 1 ) {
1520                 $('.chart-column-delete').remove();
1521             }
1522         }
1523
1524         /* overlay a syntax-highlighting definition on top of the existing sql one */
1525         CodeMirror.defineMode("sqlPlaceholders", function(config, parserConfig) {
1526             var sqlPlaceholdersOverlay = {
1527                 token: function(stream, state) {
1528                     var ch;
1529
1530                     if (stream.match("<<")) {
1531                         while ((ch = stream.next()) != null) {
1532                             if (ch == ">" && stream.next() == ">") {
1533                                 stream.eat(">");
1534                                 return "sqlParams";
1535                             }
1536                         }
1537                     }
1538
1539                     if (stream.match("[[")) {
1540                         while ((ch = stream.next()) != null) {
1541                             if (ch == "]" && stream.next() == "]") {
1542                                 stream.eat("]");
1543                                 return "columnPlaceholder";
1544                             }
1545                         }
1546                     }
1547
1548                     else if (stream.next() != null) {
1549                         return null;
1550                     }
1551                 }
1552             };
1553             return CodeMirror.overlayMode(CodeMirror.getMode(config, parserConfig.backdrop || "text/x-sql"), sqlPlaceholdersOverlay);
1554         });
1555
1556         var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this report? This cannot be undone.");
1557         var group_subgroups = {};
1558         [% FOREACH group IN groups_with_subgroups %]
1559             var gid = "[% group.id | html %]"
1560             group_subgroups[gid] = new Array();
1561             [% FOREACH subgroup IN group.subgroups %]
1562                 var sgid = "[% subgroup.id | html %]";
1563                 var sgname = "[% subgroup.name | html %]";
1564                 group_subgroups[gid].push([sgid, sgname]);
1565             [% END %]
1566         [% END %]
1567
1568         [% IF ( create || editsql || save ) %]
1569
1570             var editor = CodeMirror.fromTextArea(sql, {
1571                 lineNumbers: true,
1572                 mode: "sqlPlaceholders", /* text/x-sql plus custom sqlPlaceholders configuration */
1573                 lineWrapping: true,
1574                 smartIndent: false
1575             });
1576
1577             // https://stackoverflow.com/questions/2086287/how-to-clear-jquery-validation-error-messages#answer-16025232
1578             function clearValidation( formElement ){
1579                 // formElement should be a jQuery object
1580                 var validator = formElement.validate();
1581                 // Iterate through named elements inside of the form, and mark them as error free
1582                 $('[name]',formElement).each(function(){
1583                     validator.successList.push(this);//mark as error free
1584                     validator.showErrors();//remove error messages if present
1585                 });
1586                 validator.resetForm();//remove error class on name elements and clear history
1587                 validator.reset();//remove all error and success data
1588             }
1589         [% END %]
1590
1591         [% IF ( showsql ) %]
1592             var editor = CodeMirror.fromTextArea(sql, {
1593                 lineNumbers: false,
1594                 mode: "sqlPlaceholders", /* text/x-sql plus custom sqlPlaceholders configuration */
1595                 lineWrapping: true,
1596                 readOnly: true
1597             });
1598         [% END %]
1599
1600         function showParamModal( category ){
1601             var modal = $("#runtime_parameters");
1602             var modalTitle = $("#runtime_parametersLabel");
1603             switch ( category ){
1604                 case "insertAuthVal":
1605                     modalTitle.text( _("Insert authorized value parameter") );
1606                     $("#paramLabel").val( _("Authorized value") );
1607                     $("#authorised_value_category").show();
1608                     $("label[for='authorised_value']").addClass("required");
1609                     $("#authorised_value").prop("required", true ).attr("required", "required").addClass("required");
1610                     break;
1611                 case "insertCnSource":
1612                     modalTitle.text( _("Insert classification source parameter") );
1613                     $("#paramLabel").val( _("Source of classification or shelving scheme") );
1614                     $("#param_category").val("cn_source");
1615                     break;
1616                 case "insertFramework":
1617                     modalTitle.text( _("Insert bibliographic framework parameter") );
1618                     $("#paramLabel").val( _("Framework") );
1619                     $("#param_category").val("biblio_framework");
1620                     break;
1621                 case "insertDate":
1622                     modalTitle.text( _("Insert date parameter") );
1623                     $("#paramLabel").val( _("Date") );
1624                     $("#param_category").val("date");
1625                     break;
1626                 case "insertItemtypes":
1627                     modalTitle.text( _("Insert item types parameter") );
1628                     $("#paramLabel").val( _("Item type") );
1629                     $("#param_category").val("itemtypes");
1630                     break;
1631                 case "insertBranches":
1632                     modalTitle.text( _("Insert libraries parameter") );
1633                     $("#paramLabel").val( _("Library") );
1634                     $("#param_category").val("branches");
1635                     break;
1636                 case "insertCategorycode":
1637                     modalTitle.text( _("Insert patron category parameter") );
1638                     $("#paramLabel").val( _("Patron category") );
1639                     $("#param_category").val("categorycode");
1640                     break;
1641                 case "insertList":
1642                     modalTitle.text( _("Insert list parameter") );
1643                     $("#paramLabel").val( _("List of values") );
1644                     $("#param_category").val("list");
1645                     break;
1646                 case "insertText":
1647                     modalTitle.text( _("Insert text parameter") );
1648                     $("#paramLabel").val( _("Text") );
1649                     $("#param_category").val("");
1650                     break;
1651             }
1652             $("#paramLabel").select();
1653             modal.modal("show");
1654         }
1655
1656         function load_group_subgroups () {
1657             var group = $("#group_select").val();
1658             var sg = $("#subgroup");
1659             $(sg).find('option[value!=""]').each(function() {
1660                 $(this).remove();
1661             });
1662             $(sg).hide();
1663             if (group) {
1664                 var select = $(sg).find('select')[0];
1665                 $.each( group_subgroups[group], function(index, value) {
1666                     $('<option value="' + value[0] + '">' + value[1] + '</option>').appendTo(select);
1667                 } );
1668                 $("#subgroup, #subgroup *").show();
1669             }
1670         }
1671
1672         $(document).ready(function(){
1673
1674             var activeTab = localStorage.getItem("sql_reports_activetab");
1675
1676             $("body").on('click',".fetch_chart_data",function(){
1677                 if( [% unlimited_total || 0 | $raw %] > 1000 ){
1678                     if( confirm( _("Fetching full chart data for reports with many rows can cause performance issues. Are you sure you want to chart this report?") ) ){
1679                         return true;
1680                     } else {
1681                         return false;
1682                     }
1683                 }
1684             });
1685
1686             var showsql;
1687             hide_bar_element();
1688
1689             if ( $('.chart-column-conf').length == 1 ) {
1690                 $('.chart-column-delete').remove();
1691             }
1692
1693             $(".chart-column-delete").on('click', function(e){
1694                 e.preventDefault();
1695                 removeColumn('column_' + $(this).data('column'));
1696             })
1697
1698             $('#download-chart').click(function() {
1699                 var svg = '<svg>' + $('#chart svg').html() + '</svg>';
1700                 this.href = 'data:application/octet-stream;base64,' + btoa(svg);
1701                 this.setAttribute('download', 'chart.svg');
1702             });
1703
1704             $('#chart-type').change(function() {
1705                 if ($(this).val() == 'bar') {
1706                     show_bar_element();
1707                 }
1708                 else {
1709                     hide_bar_element();
1710                 }
1711             });
1712
1713             $('#download-chart').hide();
1714             var chart;
1715
1716             [% IF results && !errors %]
1717                 $('#draw-chart').click(function() {
1718
1719                     var x_elements = $('select[name="x"]').val();
1720                     var y_elements = [];
1721                     var groups = [];
1722                     var lines = [];
1723                     var options = {};
1724
1725                     headers = [% header_row.json | $raw %];
1726
1727                     var results;
1728                     [% IF allresults.size %]
1729                         if ($('input[name="chart-include-all"]').prop('checked')) {
1730                             results = [% allresults.json | $raw %]
1731                         }
1732                         else {
1733                             results = [% results.json | $raw %]
1734                         }
1735                     [% ELSE %]
1736                         results = [% results.json | $raw %];
1737                     [% END %]
1738
1739                     if ($('input[name="chart-exclude-last"]').prop('checked')) {
1740                         results.splice(-1, 1);
1741                     }
1742
1743                     $('select[name="y"]').each(function( index ) {
1744                         y_elements.push( $(this).val() );
1745                     });
1746                     $('select[name="group"]').each(function( index ) {
1747                         groups.push( $(this).val() );
1748                     });
1749                     $('.column-line').each(function( index ) {
1750                         if ($(this).prop('checked')) {
1751                             lines.push( $(this).attr('name') );
1752                         }
1753                     });
1754
1755                     // Remove deleted columns from headers and results.
1756                     var deleted_indexes = [];
1757                     var kept_headers = [];
1758                     $.each(headers, function(index, value) {
1759                         if (value.cell != x_elements && $.inArray(value.cell, y_elements) === -1) {
1760                             // This header is neither a x element nor in y elements. Don't need it.
1761                             deleted_indexes.push(index);
1762                         }
1763                         else {
1764                             kept_headers.push({cell: value.cell});
1765                         }
1766                     });
1767
1768                     // Remove coresponding cells.
1769                     var kept_results = [];
1770                     $.each(results, function(index, value) {
1771                         var line = {};
1772                         line['cells'] = [];
1773                         $.each(value.cells, function(i, val) {
1774                             if ($.inArray(i, deleted_indexes) === -1) {
1775                                 line['cells'].push({cell: val.cell});
1776                             }
1777                         });
1778                         kept_results.push(line);
1779                     });
1780
1781                     options.type = $('select[name="chart-type"]').val();
1782                     options.horizontal = $('input[name="column-horizontal"]').prop('checked');
1783                     options.lines = lines;
1784
1785                     chart = create_chart(kept_headers, kept_results, x_elements, y_elements, groups, options);
1786                     $("#download-chart,#toggle_chart_settings_hid,#chart").show();
1787                     $("#toggle_chart_settings_vis").hide();
1788                     $("#chartModal").modal("hide");
1789                 });
1790             [% END %]
1791             [% IF ( create ) %]
1792                 load_group_subgroups();
1793             [% END %]
1794
1795             $('[data-toggle="tooltip"]').tooltip();
1796             var columns_settings = [% TablesSettings.GetColumns( 'reports', 'saved-sql', 'table_reports', 'json' ) | $raw %];
1797
1798             $('#limit').change(function() {
1799                 $('#limitselect').submit();
1800             });
1801
1802             $(document).click(function() {
1803                 $('#report_updated').hide();
1804             });
1805
1806             $(".goback").on("click",function(e){
1807                 e.preventDefault();
1808                 window.history.back();
1809             });
1810
1811             $("body").on("click", ".mana_search_button", function(){
1812                 $("#mana-loading").show();
1813                 mana_search($("#mana_search_field").val());
1814             });
1815
1816             $(".ShareButton").on("click", function(){
1817                 $("#note-error").hide();
1818                 if($(this).closest("tr").find(".report_notes").text().length < 20 || $(this).closest("tr").find(".report_name").text().length < 20){
1819                     $(".shared_infos").hide();
1820                     $("#note-error").show();
1821                 }
1822                 else{
1823                     $("#reportid").val($(this).closest("tr").find(".report_id").text());
1824                     $("#shared_id").html($(this).closest("tr").find(".report_id").text());
1825                     $("#shared_name").html($(this).closest("tr").find(".report_name").text());
1826                     $("#shared_sql").html($(this).closest("tr").find(".report_sql").val());
1827                     $("#shared_type").html($(this).closest("tr").find(".report_type").text());
1828                     $("#shared_group").html($(this).closest("tr").find(".report_group").text());
1829                     $("#shared_notes").html($(this).closest("tr").find(".report_notes").text());
1830                 }
1831             });
1832
1833             $("#ManaCloseButton").on("click", function() {
1834                 $(".shared_infos").show();
1835             });
1836
1837             $("#addColumn").on("click",function(){
1838                 addColumn();
1839             });
1840
1841             $("#delColumn").on("click",function(){
1842                 delColumn();
1843             });
1844
1845             [% IF (saved1) %]
1846                 var rtable = KohaTable("table_reports", {
1847                     'pageLength': [% Koha.Preference('NumSavedReports') | html %],
1848                     'bAutoWidth': false,
1849                     'sPaginationType': 'full',
1850                     'aaSorting': [[ 1, "asc" ]],
1851                     'oLanguage': {
1852                         'sZeroRecords': _("No matching reports found")
1853                     },
1854                 }, columns_settings);
1855
1856                 var rtabs = $("#tabs").tabs({
1857                     create: function( e, ui ){
1858                         tabsInit( ui, rtable );
1859                     },
1860                     activate: function( e, ui ){
1861                         tabsInit( ui, rtable );
1862                     }
1863                 });
1864                 if( activeTab ){
1865                     $("#tabs").tabs("option","active", activeTab );
1866                 }
1867
1868                 $("#subgroup_filter").change(function() {
1869                     var selected = $(this).find('option:selected');
1870                     var sg_id = $(selected).val();
1871                     var sg_name = $(selected).text();
1872                     if (sg_id.length > 0) {
1873                         rtable.fnFilter('^' + sg_name + '$', 5, true, true, true, false);
1874                         rtable.fnSetColumnVis(5, false);
1875                     } else {
1876                         rtable.fnFilter('', 5);
1877                         rtable.fnSetColumnVis(5, true);
1878                     }
1879                 });
1880
1881                 $("#reports_form").submit(function(){
1882                     var checkedItems = $("input[name=ids]:checked");
1883                     if ($(checkedItems).size() == 0) {
1884                         alert(_("You must select one or more reports to delete"));
1885                         return false;
1886                     }
1887                     $(checkedItems).parents('tr').addClass("warn");
1888                     if( confirm(_("Are you sure you want to delete the selected reports?")) ) {
1889                         return true;
1890                     } else {
1891                         $(checkedItems).parents('tr').removeClass("warn");
1892                         return false;
1893                     }
1894                 });
1895
1896                 $("body").on("click", ".update_sql", function(e){
1897                     e.preventDefault();
1898                     var ltitle = $(this).text();
1899                     var report_id = $(this).data("report_id");
1900                     var page = $(this).attr("href");
1901                     $("#update_sql .modal-body").load(page + " div", function(){
1902                         var diff1 = $("#col1 .show_sql").text();
1903                         var diff2 = $("#col2 .show_sql").text();
1904                         var diffs = diffString( escape(diff1), escape(diff2) );
1905                         $("#col1 .show_sql,#col2 .show_sql").html(diffs);
1906                     });
1907                     $('#update_sql').modal('show');
1908                     $("#update_sql_button").attr("href", "/cgi-bin/koha/reports/guided_reports.pl?phase=Use saved&op=convert&report_id=" + report_id);
1909                 });
1910
1911                 $("#update_sql").on("hidden.bs.modal", function(){
1912                     $("#update_sql_label").html("");
1913                     $("#update_sql .modal-body").html("<div id=\"loading\"><img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> "+_("Loading")+"</div>");
1914                 });
1915             [% END %]
1916
1917             [% IF ( showsql ) %]
1918                 $("#sql").focus(function() {
1919                     $(this).select();
1920                 });
1921             [% END %]
1922
1923             $(".toggle_sql").click(function(){
1924                 $("#sql_output").toggle();
1925                 $("#toggle_sql_hid").toggle();
1926                 $("#toggle_sql_vis").toggle();
1927                 if( !showsql ){
1928                     showsql = CodeMirror.fromTextArea(sql, {
1929                         lineNumbers: false,
1930                         mode: "text/x-sql",
1931                         lineWrapping: true,
1932                         readOnly: true
1933                     });
1934                 }
1935             });
1936
1937             $(".toggle_chart_settings").click(function(){
1938                 $("#chart, #toggle_chart_settings_hid, #toggle_chart_settings_vis").toggle();
1939             });
1940
1941             $("#table_reports").delegate(".confirmdelete", 'click', function(){
1942                 $(this).parents('tr').attr("class","warn");
1943                 if(confirm(_("Are you sure you want to delete this saved report?"))){
1944                     return true;
1945                 } else {
1946                     $(this).parents('tr').attr("class","");
1947                     return false;
1948                 }
1949             });
1950
1951             [% IF (create || editsql || save) %]
1952
1953                 var validated_form = $("#sql_report_form").validate({
1954                     reportname: "required",
1955                     group_input: {
1956                         required: {
1957                             depends: function(element) {
1958                                 return $("#create_group").prop("checked") && $("#groupdesc_input").val() != '';
1959                             }
1960                         }
1961                     },
1962                     groupdesc_input: {
1963                         required: {
1964                             depends: function(element) {
1965                                 return $("#create_group").prop("checked") && $("#group_input").val() != '';
1966                             }
1967                         }
1968                     }
1969                 });
1970
1971                 $("#select_group").change(function() {
1972                     if($(this).prop('checked')) {
1973                         $("#group_input").attr("class","").prop('disabled', true).prop("required", false);
1974                         $("#groupdesc_input").attr("class","").prop('disabled', true).prop("required", false);
1975                         $("#group_select").prop('disabled', false);
1976                         clearValidation( $("#sql_report_form") );
1977                         if ($("#group_select").val().length > 0) {
1978                             $("#select_subgroup").prop('checked', true);
1979                             $("#select_subgroup").change();
1980                             $("#subgroup, #subgroup *").show();
1981                         } else {
1982                             $("#subgroup").hide();
1983                         }
1984                     }
1985                 });
1986                 $("#create_group").change(function() {
1987                     if($(this).prop('checked')) {
1988                         $("#group_input").prop('disabled', false).prop("required", true );
1989                         $("#groupdesc_input").prop('disabled', false).prop("required", true );
1990                         $("#group_select").prop('disabled', true);
1991                         // $("#create_subgroup").prop('checked', true).change();
1992                         $("#subgroup_select").hide();
1993                         $("#subgroup input[type='radio']").hide();
1994                         $("#subgroup label[for]").hide();
1995                         $("#subgroup_input").prop("required", false ).prop("disabled", false).show();
1996                         $("#subgroupdesc_input").prop("required", false ).prop("disabled", false).show();
1997                         $("#subgroup").show();
1998                         // Add validation rules for fields which were previously hidden
1999                         $("#subgroup_input").rules("add", {
2000                             required: {
2001                                 depends: function(element) {
2002                                     return $("#create_group").prop("checked") &&  $("#subgroupdesc_input").val() != '';
2003                                 }
2004                             }
2005                         });
2006                         $("#subgroupdesc_input").rules("add", {
2007                             required: {
2008                                 depends: function(element) {
2009                                     return $("#create_group").prop("checked") &&  $("#subgroup_input").val() != '';
2010                                 }
2011                             }
2012                         });
2013                     }
2014                 });
2015                 $("#select_subgroup").change(function() {
2016                     if($(this).prop('checked')) {
2017                         $("#subgroup_select").prop('disabled', false);
2018                         $("#subgroup_input").prop('disabled', true).prop("required", false );
2019                         $("#subgroupdesc_input").prop('disabled', true).prop("required", false );
2020                         clearValidation( $("#sql_report_form") );
2021                     }
2022                 });
2023                 $("#create_subgroup").change(function() {
2024                     if($(this).prop('checked')) {
2025                         $("#subgroup_input").prop('disabled', false).prop("required", true );
2026                         $("#subgroupdesc_input").prop('disabled', false).prop("required", true );
2027                         $("#subgroup_select").val("").prop('disabled', true);
2028                     }
2029                 });
2030                 $("#select_group").change();
2031                 $("#select_subgroup").change();
2032                 $("#group_select").on("change",function(){
2033                     load_group_subgroups();
2034                 });
2035
2036                 $(".insertParam").on("click", function(e){
2037                     e.preventDefault();
2038                     var category = this.id;
2039                     showParamModal( category );
2040                 });
2041
2042                 $("#runtime_parameters").on("shown.bs.modal", function(){
2043                     $("#paramLabel").focus();
2044                 });
2045
2046                 $("#runtime_parameters").on("hide.bs.modal", function(){
2047                     $("#send_runtime_parameter")[0].reset();
2048                     $("#authorised_value_category").val("").hide();
2049                     $("label[for='authorised_value']").removeClass("required");
2050                     $("#authorised_value").prop("required", false ).removeAttr("required").removeClass("required");
2051                 });
2052
2053                 $("#send_runtime_parameter").on("submit", function(e){
2054                     e.preventDefault();
2055                     /* Get form values */
2056                     var paramLabel = $("#paramLabel").val();
2057                     var param_category = $("#param_category").val();
2058                     var categoryLabel = $("#authorised_value").val();
2059                     // Get CodeMirror environment variables
2060                     var selection = editor.getSelection();
2061                     var doc = editor.getDoc();
2062                     var cursor = doc.getCursor();
2063                     var pos = {
2064                         line: cursor.line,
2065                         ch: cursor.ch
2066                     }
2067                     /* Build runtime parameter text string */
2068                     var text = "";
2069                     if( paramLabel && param_category ){
2070                         text += paramLabel + "|" + param_category;
2071                     } else if( paramLabel ) {
2072                         text += paramLabel;
2073                     } else if( param_category ){
2074                         text += param_category;
2075                     }
2076                     if( text != "" ){
2077                         text = " <<" + text + ">> ";
2078                         if( selection.length > 0){
2079                             editor.replaceSelection(text);
2080                         } else {
2081                             doc.replaceRange(text, pos);
2082                         }
2083                     }
2084                     $("#runtime_parameters").modal("hide");
2085                 });
2086
2087                 $("#authorised_value").on("change", function(){
2088                     $("#param_category").val( $(this).val() );
2089                 });
2090
2091             [% END %]
2092
2093             $(".delete").on("click",function(){
2094                 return confirmDelete(MSG_CONFIRM_DELETE);
2095             });
2096
2097             $("#mana_search_form").submit(function(e){
2098                 e.preventDefault();
2099             });
2100
2101             $("#column_submit").submit(function() {
2102                 if ($("#selectedColumns option").size() < 1) {
2103                     alert(_("No columns selected!"));
2104                     return false;
2105                 }
2106                 $("#selectedColumns option").attr("selected", "selected");  // Select everything still in #selectedColumns
2107                 return true;
2108             });
2109
2110             // Mana KB
2111             $("body").on("click", ".mana-use", function(e) {
2112                 e.preventDefault();
2113                 $(this).find("i").attr("class","fa fa-refresh fa-spin");
2114                 mana_use( $(this).data("report_id") );
2115             });
2116
2117             $("#mana_search_result").on("hide.bs.modal", function(){
2118                 $("#mana_result_content").html("");
2119                 $("#mana_search_field").val("");
2120             });
2121
2122             $(".batch_op").on("click", function(e){
2123                 e.preventDefault();
2124                 var target_form = $(this).data("submit");
2125                 $("#" + target_form ).submit();
2126             });
2127
2128             $("#batch_add_to_list").on("submit", function(e){
2129                 e.preventDefault();
2130                 addToList();
2131             });
2132
2133             $("body").on("click", ".preview_sql", function(e){
2134                 e.preventDefault();
2135                 var reportid = $(this).data("reportid");
2136                 previewSql( reportid );
2137             });
2138             $(".limitselect").on("click", function(){
2139                 var limit = $(this).data("limit");
2140                 $("#limit").val( limit );
2141                 $("#limitselect").submit();
2142             });
2143
2144         });
2145
2146         $("#toggle_auto_links").on("click", function(e){
2147             e.preventDefault();
2148             if( $(".data-plain").is(":visible") ){
2149                 /* if a data-plain element is visible, this click hides it and shows auto-links */
2150                 localStorage.removeItem("reports_auto_link_off");
2151             } else {
2152                 /* if a data-plain element is hidden, this click shows it  and hides auto-links */
2153                 localStorage.setItem("reports_auto_link_off", 1);
2154             }
2155             $(".data-plain,.autolink").toggle();
2156         });
2157         if ( localStorage.getItem("reports_auto_link_off") == 1 ){
2158             $("#toggle_auto_links").click();
2159         }
2160
2161         function tabsInit( ui, rtable ){
2162             var thisTab = ui.newTab ? ui.newTab : ui.tab;
2163             var activeTab = thisTab.index();
2164             localStorage.setItem("sql_reports_activetab", activeTab );
2165
2166             $("#subgroup_filter option").each(function() {
2167                 if($(this).val().length > 0) {
2168                     $(this).remove();
2169                 }
2170             });
2171             rtable.fnFilter('', 4);
2172             rtable.fnFilter('', 5);
2173             rtable.fnSetColumnVis(4, true);
2174             rtable.fnSetColumnVis(5, true);
2175
2176             var g_id = $(ui.newTab).children().attr('id');
2177             var g_name = $(ui.newTab).text();
2178             if ( g_name == _("All") ) {
2179                 g_id = "";
2180                 g_name = "";
2181             }
2182
2183             if (g_id && g_id.length > 0) {
2184                 rtable.fnFilter('^' + g_name + '$', 4, true, true, true, false);
2185                 rtable.fnSetColumnVis(4, false);
2186                 for(var i in group_subgroups[g_id]) {
2187                     $("#subgroup_filter").append(
2188                         '<option value="' + group_subgroups[g_id][i][0] + '">'
2189                         + group_subgroups[g_id][i][1] + '</option>'
2190                     );
2191                 }
2192                 $("#subgroup_filter_block").show();
2193             } else {
2194                 $("#subgroup_filter_block").hide();
2195             }
2196         }
2197
2198         function addColumn() {
2199             $("#availableColumns option:selected").clone().appendTo("#selectedColumns").attr("selected", "selected");
2200         }
2201         function delColumn() {
2202             $("#selectedColumns option:selected").remove();
2203         }
2204
2205         // Mana KB
2206         function mana_use( mana_id ){
2207             $.ajax( {
2208                 type:"POST",
2209                 url: "/cgi-bin/koha/svc/mana/use",
2210                 data: {id:mana_id, resource: 'report', saveinbase: 1},
2211                 dataType: "json",
2212             })
2213             .done( function (result){
2214                 if ( result.errmsg ){
2215                     alert( result.errmsg );
2216                 }
2217                 else{
2218                     window.location = ("/cgi-bin/koha/reports/guided_reports.pl?reports=").concat(result.id).concat("&phase=Show%20SQL&mana_success=1");
2219                 }
2220             })
2221             .fail(function( error ) {
2222                 $(".mana_use_status").hide();
2223                 $("#mana_use_errortext").html( error.status + " " + error.statusText );
2224                 $("#mana_use_failed").show();
2225                 $(".mana-use i").attr("class","fa fa-download");
2226             });
2227         }
2228
2229         function mana_search( textquery ){
2230             $(".mana_search_status").hide();
2231             $("#mana_result_content").load("/cgi-bin/koha/svc/mana/search #mana_results", { resource: 'report', id: textquery, usecomments: 1 }, function( response, status, xhr ) {
2232
2233                     if ( status == "error" ) {
2234                         $("#mana_search_errortext").html( xhr.status + " " + xhr.statusText );
2235                         $("#mana_search_failed").show();
2236                         $("#mana-loading").hide();
2237                     } else {
2238                         $(".mana_search_status").hide();
2239                         $("#mana_search_result_label").text(_("Results from Mana Knowledge Base"));
2240                         $("#mana-loading").hide();
2241                         $("#mana_results_datatable").dataTable($.extend(true, {}, dataTablesDefaults,{
2242                             "sPaginationType":"full",
2243                             "autoWidth": false,
2244                             "columnDefs": [
2245                                 { "width": "35%", "targets": 1 }
2246                             ],
2247                             "aoColumnDefs": [
2248                                 { 'bSortable': false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
2249                                 { 'sType': "anti-the", 'aTargets' : [ 'anti-the'] }
2250                             ]
2251                         }));
2252
2253                         $(".showbutton").on("click", function(e){
2254                             e.preventDefault();
2255                             $(this).parent().hide();
2256                             $(this).parent().next().show();
2257                         });
2258
2259                         $(".hidebutton").on("click", function(e){
2260                             e.preventDefault();
2261                             $(this).parent().hide();
2262                             $(this).parent().prev().show();
2263                         });
2264
2265                         if($("td.dataTables_empty").length == 0){
2266                             $("#mana_search_message").show();
2267                         }
2268                     }
2269                 });
2270         }
2271
2272         function addToList() {
2273             var biblionumbers = [];
2274             $(".bib_to_list").each(function() {
2275                 var biblionumber = Number( $(this).val() );
2276                 if( biblionumbers.indexOf( biblionumber ) < 0 ){
2277                     biblionumbers.push( biblionumber );
2278                 }
2279             });
2280             bibs = biblionumbers.join("/");
2281             var url = "/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?biblionumbers=" + bibs;
2282             window.open(url, 'Add_to_virtualshelf', 'width=500, height=400, toolbar=false, scrollbars=yes');
2283             return false;
2284         }
2285
2286         // Adapted from https://gist.github.com/jnormore/7418776
2287         function previewSql(reportid) {
2288             var yes_label = "";
2289             var no_label = "";
2290             var message = $("#previewSql" + reportid ).val();
2291             var title = $("#previewSql" + reportid ).data("title");
2292             if( $("#preview-sql-modal").length > 0) {
2293                 $("#preview-sql-modal").remove();
2294             }
2295             $("body").append('<div id="preview-sql-modal" tabindex="-1" role="dialog" aria-hidden="true" class="modal">\
2296                 <div class="modal-dialog">\
2297                     <div class="modal-content">\
2298                         <div class="modal-header" style="min-height:40px;">\
2299                             <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close">\
2300                                 <span aria-hidden="true">×</span>\
2301                             </button>\
2302                             <h4 class="modal-title">' + title + '</h4>\
2303                         </div>\
2304                         <div class="modal-body"><textarea id="code' + reportid + '">' + message + '</textarea>\
2305                         <div class="modal-footer">\
2306                             <a id="preview-modal-editreport" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?reports=' + reportid + '&amp;phase=Edit%20SQL"><i class="fa fa-pencil"></i> ' + _("Edit") + '</a>\
2307                             <a id="preview-modal-duplicate" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create report from existing&amp;report_id=' + reportid + '"><i class="fa fa-copy"></i> ' + _("Duplicate") + '</a>\
2308                             <a id="preview-modal-duplicate" class="btn btn-default" href="/cgi-bin/koha/tools/scheduler.pl?id=' + reportid + '"><i class="fa fa-clock-o"></i> ' + _("Schedule") + '</a>\
2309                             <a id="preview-modal-delete" class="delete btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?reports=' + reportid + '&amp;phase=Delete%20Saved"><i class="fa fa-trash"></i> ' + _("Delete") + '</a>\
2310                             <a id="preview-modal-runreport" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?reports=' + reportid + '&amp;phase=Run%20this%20report"><i class="fa fa-play"></i> ' + _("Run report") + '</a>\
2311                             <a href="#" id="preview-sql-modal-cancel" data-dismiss="modal" class="btn btn-default"><i class="fa fa-remove" aria-hidden="true"></i> ' + _("Close") + '</a>\
2312                         </div>\
2313                     </div>\
2314                 </div>\
2315             </div>');
2316
2317             $("#preview-sql-modal").modal('show');
2318             CodeMirror.fromTextArea( document.getElementById("code" + reportid ), {
2319                 lineNumbers: false,
2320                 mode: "text/x-sql",
2321                 lineWrapping: true,
2322                 readOnly: true
2323             });
2324         }
2325     </script>
2326 [% END %]
2327
2328 [% INCLUDE 'intranet-bottom.inc' %]
2329
2330 [% BLOCK group_and_subgroup_selection %]
2331     <li id="group">
2332         <label>Report group:</label>
2333         <input type="radio" name="select_or_create_group"
2334             id="select_group" checked="checked" />
2335         <label for="select_group" style="float:none">Select</label>
2336         <select name="group" id="group_select">
2337             <option value="">(None)</option>
2338             [% FOREACH group IN groups_with_subgroups %]
2339                 [% IF (group.selected) %]
2340                     <option value="[% group.id | html %]" selected="selected">
2341                 [% ELSE %]
2342                     <option value="[% group.id | html %]">
2343                 [% END %]
2344                     [% group.name | html %]
2345                 </option>
2346             [% END %]
2347         </select>
2348         <input type="radio" name="select_or_create_group" id="create_group" />
2349         <label for="create_group" style="float:none">or create:</label>
2350         <input type="text" name="group" id="group_input" title="Group code" placeholder="Code" />
2351         <input type="text" name="groupdesc" id="groupdesc_input" title="Group name" placeholder="Name" />
2352     </li>
2353     <li id="subgroup">
2354         <label>Report subgroup:</label>
2355         <input type="radio" name="select_or_create_subgroup"
2356             id="select_subgroup" checked="checked" />
2357         <label for="select_subgroup" style="float:none">Select</label>
2358         <select name="subgroup" id="subgroup_select">
2359             <option value="">(None)</option>
2360             [% FOREACH group IN groups_with_subgroups %]
2361                 [% IF (group.selected) %]
2362                     [% FOREACH subgroup IN group.subgroups %]
2363                         [% IF (subgroup.selected) %]
2364                             <option value="[% subgroup.id | html %]" selected="selected">
2365                         [% ELSE %]
2366                             <option value="[% subgroup.id | html %]">
2367                         [% END %]
2368                             [% subgroup.name | html %]
2369                         </option>
2370                     [% END %]
2371                 [% END %]
2372             [% END %]
2373         </select>
2374         <input type="radio" name="select_or_create_subgroup"
2375             id="create_subgroup" />
2376         <label for="create_subgroup" style="float:none">or create</label>
2377         <input type="text" name="subgroup" id="subgroup_input" title="Subgroup code" placeholder="Code" />
2378         <input type="text" name="subgroupdesc" id="subgroupdesc_input" title="Subgroup name" placeholder="Name" />
2379     </li>
2380 [% END %]
2381
2382 [% BLOCK insert_runtime_parameter %]
2383     <div class="btn-group"  style="margin-left:30px;">
2384         <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
2385             Insert runtime parameter <span class="caret"></span>
2386         </button>
2387         <ul class="dropdown-menu">
2388             <li><a href="#" class="insertParam" id="insertAuthVal">Authorized values</a></li>
2389             <li><a href="#" class="insertParam" id="insertFramework">Bibliographic framework</a></li>
2390             <li><a href="#" class="insertParam" id="insertCnSource">Classification sources</a></li>
2391             <li><a href="#" class="insertParam" id="insertDate">Date</a></li>
2392             <li><a href="#" class="insertParam" id="insertItemtypes">Item types</a></li>
2393             <li><a href="#" class="insertParam" id="insertBranches">Libraries</a></li>
2394             <li><a href="#" class="insertParam" id="insertList">List</a></li>
2395             <li><a href="#" class="insertParam" id="insertCategorycode">Patron categories</a></li>
2396             <li><a href="#" class="insertParam" id="insertText">Text field</a></li>
2397         </ul>
2398     </div>
2399 [% END %]