Lines 68-73
function load_group_subgroups () {
Link Here
|
68 |
|
68 |
|
69 |
$(document).ready(function(){ |
69 |
$(document).ready(function(){ |
70 |
|
70 |
|
|
|
71 |
$(".goback").on("click",function(){ |
72 |
window.history.back(); |
73 |
}); |
74 |
|
75 |
$("#addColumn").on("click",function(){ |
76 |
addColumn(); |
77 |
}); |
78 |
|
79 |
$("#delColumn").on("click",function(){ |
80 |
delColumn(); |
81 |
}); |
82 |
|
71 |
[% IF (saved1) %] |
83 |
[% IF (saved1) %] |
72 |
var rtable = $("#table_reports").dataTable($.extend(true, {}, dataTablesDefaults, { |
84 |
var rtable = $("#table_reports").dataTable($.extend(true, {}, dataTablesDefaults, { |
73 |
'bAutoWidth': false, |
85 |
'bAutoWidth': false, |
Lines 466-472
canned reports and writing custom SQL reports.</p>
Link Here
|
466 |
|
478 |
|
467 |
<fieldset class="action"> |
479 |
<fieldset class="action"> |
468 |
<input type="hidden" name="phase" value="Choose this type" /> |
480 |
<input type="hidden" name="phase" value="Choose this type" /> |
469 |
<input type="button" name="back" value="<< Back" onclick="javascript:history.back()" /> |
481 |
<input type="button" name="back" value="<< Back" class="goback" /> |
470 |
<input type="submit" name="submit" value="Next >>" /> |
482 |
<input type="submit" name="submit" value="Next >>" /> |
471 |
</fieldset> |
483 |
</fieldset> |
472 |
</form> |
484 |
</form> |
Lines 514-521
canned reports and writing custom SQL reports.</p>
Link Here
|
514 |
[% END %] |
526 |
[% END %] |
515 |
</optgroup> |
527 |
</optgroup> |
516 |
</select></div> |
528 |
</select></div> |
517 |
<div style="width: 6.3em; float: right; margin-top: 100px"><input type="button" name="Add" value="Add" class="button" style="width:6em;" onclick="addColumn()" /><br /> |
529 |
<div style="width: 6.3em; float: right; margin-top: 100px"><input type="button" name="Add" value="Add" class="button" style="width:6em;" id="addColumn" /><br /> |
518 |
<input type="button" name="delete" value="<< Delete" class="button" style="width: 6em; margin: 1em 0;" onclick="delColumn()" /></div> |
530 |
<input type="button" name="delete" value="<< Delete" class="button" style="width: 6em; margin: 1em 0;" id="delColumn" /></div> |
519 |
</div> |
531 |
</div> |
520 |
|
532 |
|
521 |
<div class="yui-u"> |
533 |
<div class="yui-u"> |
Lines 526-532
canned reports and writing custom SQL reports.</p>
Link Here
|
526 |
<div class="yui-g"> |
538 |
<div class="yui-g"> |
527 |
<fieldset class="action"> |
539 |
<fieldset class="action"> |
528 |
<input type="hidden" name="phase" value="Choose these columns" /> |
540 |
<input type="hidden" name="phase" value="Choose these columns" /> |
529 |
<input type="button" name="back" value="<< Back" onclick="javascript:history.back()" /> |
541 |
<input type="button" name="back" value="<< Back" class="goback" /> |
530 |
<input type="submit" name="submit" value="Next >>" /> |
542 |
<input type="submit" name="submit" value="Next >>" /> |
531 |
</fieldset> |
543 |
</fieldset> |
532 |
</div> |
544 |
</div> |
Lines 599-605
canned reports and writing custom SQL reports.</p>
Link Here
|
599 |
[% END %] |
611 |
[% END %] |
600 |
|
612 |
|
601 |
<fieldset class="action"><input type="hidden" name="phase" value="Choose these criteria" /> |
613 |
<fieldset class="action"><input type="hidden" name="phase" value="Choose these criteria" /> |
602 |
<input type="button" name="back" value="<< Back" onclick="javascript:history.back()" /> |
614 |
<input type="button" name="back" value="<< Back" class="goback" /> |
603 |
<input type="submit" name="submit" value="Next >>" /> </fieldset> |
615 |
<input type="submit" name="submit" value="Next >>" /> </fieldset> |
604 |
</form> |
616 |
</form> |
605 |
[% END %] |
617 |
[% END %] |
Lines 631-637
canned reports and writing custom SQL reports.</p>
Link Here
|
631 |
</table></fieldset> |
643 |
</table></fieldset> |
632 |
|
644 |
|
633 |
<fieldset class="action"><input type="hidden" name="phase" value="Choose these operations" /> |
645 |
<fieldset class="action"><input type="hidden" name="phase" value="Choose these operations" /> |
634 |
<input type="button" name="back" value="<< Back" onclick="javascript:history.back()" /> |
646 |
<input type="button" name="back" value="<< Back" class="goback" /> |
635 |
<input type="submit" name="submit" value="Next >>" /></fieldset> |
647 |
<input type="submit" name="submit" value="Next >>" /></fieldset> |
636 |
</form> |
648 |
</form> |
637 |
[% END %] |
649 |
[% END %] |
Lines 738-744
canned reports and writing custom SQL reports.</p>
Link Here
|
738 |
</form> |
750 |
</form> |
739 |
<!-- Go back to editing --> |
751 |
<!-- Go back to editing --> |
740 |
<form action='/cgi-bin/koha/reports/guided_reports.pl'> |
752 |
<form action='/cgi-bin/koha/reports/guided_reports.pl'> |
741 |
<button type="button" class="new" onclick="history.back()"><i class="fa fa-fw fa-pencil"></i> Edit SQL</button> |
753 |
<button type="button" class="new goback"><i class="fa fa-fw fa-pencil"></i> Edit SQL</button> |
742 |
</form> |
754 |
</form> |
743 |
</div> |
755 |
</div> |
744 |
[% END %] |
756 |
[% END %] |
Lines 1005-1011
Sub report:<select name="subreport">
Link Here
|
1005 |
[% ELSE %] |
1017 |
[% ELSE %] |
1006 |
[% END %] |
1018 |
[% END %] |
1007 |
<div id="onerror_actions"> |
1019 |
<div id="onerror_actions"> |
1008 |
<a href="javascript:window.history.back()" class="button">Return to previous page</a> |
1020 |
<a class="button goback">Return to previous page</a> |
1009 |
</div> |
1021 |
</div> |
1010 |
[% END %] |
1022 |
[% END %] |
1011 |
</div> |
1023 |
</div> |
1012 |
- |
|
|