View | Details | Raw Unified | Return to bug 25940
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-4 / +2 lines)
Lines 923-938 Link Here
923
                e.preventDefault();
923
                e.preventDefault();
924
                $(".modal").modal("show");
924
                $(".modal").modal("show");
925
            });
925
            });
926
926
            [% IF reserve_id %]
927
            $(".print-slip").on('click', function(e) {
927
            $(".print-slip").on('click', function(e) {
928
                e.preventDefault();
928
                e.preventDefault();
929
                Dopop('hold-transfer-slip.pl?reserve_id=[% reserve_id | uri %]');
929
                Dopop('hold-transfer-slip.pl?reserve_id=[% reserve_id | uri %]');
930
            });
930
            });
931
932
            [% IF print_slip %]
931
            [% IF print_slip %]
933
                Dopop('hold-transfer-slip.pl?reserve_id=[% reserve_id | uri %]');
932
                Dopop('hold-transfer-slip.pl?reserve_id=[% reserve_id | uri %]');
934
            [% END %]
933
            [% END %]
935
934
            [% END %]
936
            var columns_settings = [% TablesSettings.GetColumns( 'circ', 'returns', 'checkedintable', 'json' ) | $raw %]
935
            var columns_settings = [% TablesSettings.GetColumns( 'circ', 'returns', 'checkedintable', 'json' ) | $raw %]
937
            var returns_table = KohaTable("checkedintable", {
936
            var returns_table = KohaTable("checkedintable", {
938
                    "bFilter":false,
937
                    "bFilter":false,
939
- 

Return to bug 25940